之前写过一个登陆验证的程序了,接下来我们修改一下要求!
要求输入正确的账号密码才可以登陆成功,并且给三次机会!
正确账号为:dotcpp
密码为:123456
只有账号和密码都正确,才可以提示:Successful landing!
否则提示:Landing failure! There's another X chance!
其中X代表次数,只能为2和1,为0时直接提示:Account freeze!
请用自定义函数完成!
账号和密码 占一行(长度均不超过20)
登陆验证的结果
abc 123 dotcpp 666666 dotcpp 123123
Landing failure! There's another 2 chance! Landing failure! There's another 1 chance! Account freeze!