Commit 6d489521 by BellCodeEditor

save project

parent ca538372
Showing with 18 additions and 10 deletions
i=3
a = "233" a = "233"
b = "123456" b = "123456"
while True: while True:
x=input("请输入账号:") if i>0:
y=input("请输入密码:") x=input("请输入账号:")
if x!=a: y=input("请输入密码:")
print("账号错误!!!") if x==a and y==b:
continue print("密码正确")
if y!=b: break
print("密码错误!!!") if x!=a:
if x==a and y==b: i-=1
print("密码正确") print("账号错误!!!")
break continue
if y!=b:
i-=1
print("密码错误!!!")
else:
print("滚!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!")
exit()
print("233") print("233")
\ No newline at end of file
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