Commit 260ba96d by BellCodeEditor

save project

parent b810c294
Showing with 29 additions and 0 deletions
a="billbill"
b="2233"
c="bhg123"
i=3
while True:
if i>0:
A=input("密码:")
B=input("账号:")
C=input("验证码:")
i=i-1
if a==A and b==B and c==C:
print("成功")
break
if a != A:
print("name is wrong")
print("还剩"+str(i)+"次机会")
continue
if b != B:
print("密码错误")
print("还剩"+str(i)+"次机会")
continue
if c != C:
print("验证码错误")
print("还剩"+str(i)+"次机会")
else:
print("滚!")
exit()
print("欢迎")
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment