You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

33 lines
1.0 KiB

package main
import (
"fmt"
)
type Account struct {
Email string
Password string
}
func main() {
// 直接写死的账户信息
accounts := []Account{
{Email: "jack0210_@hotmail.com", Password: "aaaAAA111!!!"},
{Email: "yujieccyj01@hotmail.com", Password: "aaaAAA111!!!"},
{Email: "yujieccyj02@hotmail.com", Password: "aaaAAA111!!!"},
{Email: "yujieccyj03@hotmail.com", Password: "aaaAAA111!!!"},
{Email: "yujieccyj04@hotmail.com", Password: "aaaAAA111!!!"},
{Email: "yujieccyj05@hotmail.com", Password: "aaaaAA111!!!"},
{Email: "yujieccyj06@hotmail.com", Password: "aaaAAA111!!!"},
{Email: "yujieccyj07@hotmail.com", Password: "aaaAAA111!!!"},
{Email: "yujieccyj08@hotmail.com", Password: "aaaAAA111!!!"},
{Email: "yujieccyj09@hotmail.com", Password: "aaaAAA111!!!"},
{Email: "yujieccyj10@hotmail.com", Password: "aaaAAA111!!!"},
}
// 遍历账户并执行操作
for _, account := range accounts {
fmt.Printf("Processing account: %s\n", account.Email)
// 在这里添加您需要的操作
}
}