Commit 3c4b0166 by BellCodeEditor

save project

parent 467d7f63
Showing with 3 additions and 2 deletions
......@@ -6,14 +6,15 @@ while i>3:
password = input("请输入密码:")
i-=1
# 请用input()实现用户输入账号、密码的功能
if name == username and password == userpassword:
print("登录成功")
break
if name != username:
print("滚")
print("滚,你还有"+str(i)+"次机会")
continue
if password != userpassword:
print("滚")
print("滚,你还有"+str(i)+"次机会")
else:
print("去死")
exit()
......
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