sh 模擬退出 模擬exit 退出命令實現

2021-10-13 11:18:00 字數 1004 閱讀 8756

方法一

while true:

username=input("請輸入你的使用者名稱:>>>")

password=input("請輸入你的密碼:>>>")

if username=='zhanghaiyan' and password=='123456':

print('login successful')

while true:

cmd=input("請輸入命令:>>>")

if cmd=='exit':

break

print("====>",cmd)

break

# 方法二:

tag=true

while tag:

username=input("請輸入你的使用者名稱:>>>")

password=input("請輸入你的密碼:>>>")

if username=='zhanghaiyan' and password=='123456':

print('login successful')

while tag:

cmd=input("請輸入命令:>>>")

if cmd=='exit':

tag=false

continue

print("====>",cmd)

# 方法三:

tag=true

while tag:

username=input("請輸入你的使用者名稱:>>>")

password=input("請輸入你的密碼:>>>")

if username=='zhanghaiyan' and password=='123456':

print('login successful')

while tag:

cmd=input("請輸入命令:>>>")

if cmd=='exit':

tag=false

else:

print("====>",cmd)

sh 模擬退出 模擬exit 退出命令實現

方法一 while true username input 請輸入你的使用者名稱 password input 請輸入你的密碼 if username zhanghaiyan and password 123456 print login successful while true cmd inpu...

模擬exit 退出命令實現

1.當輸入exit命令是退出程式,如果輸入其他的就列印 方法一 while true username input 請輸入你的使用者名稱 password input 請輸入你的密碼 if username zhanghaiyan and password 123456 print login su...

程序退出 exit 和 exit

void exit int value 是標準庫函式,在標頭檔案 stdlib.h 中定義。具有重新整理 i o 緩衝區的作用。他的引數 value 是返回給父程序的資料 低 8 位有效 void exit int value 是系統呼叫函式,在標頭檔案 unistd.h 中定義。沒有重新整理 i ...