1、允許使用者最多嘗試三次
2、每嘗試三次後,如果還沒猜對,就問使用者是否繼續玩,如果回答y,y,就繼續猜三次,以此往復,如果回答n,n,就直接退出
times=0
count=3
while times<=3:
age=int(input(『請輸入年齡:』))
if age == 18:
print(『猜對了』)
break
elif age > 18:
print(『猜大了』)
else:
print(『猜小了』)
times+=1
if times3:
choose = input(『繼續猜y/n』)
if choose"y" or choose==「y」:
times=0
elif choose==「n」 or choose==「n」:
break
else:
print("請輸入正確字元 ")
tcp三次握手 TCP 三次握手總結
tcp特點概述 tcp segment structure 段結構 step2 server host receives syn,replie with syn ack segment 答覆syn ack報文段 step3 client receives synack,replies with ac...
C語言 8 猜數字遊戲 三次密碼輸入模擬
猜數字遊戲 define crt secure no warnings 1 include include include includevoid menu void game else if guess ret else int main while 0 system pause return 0...
http三次握手 HTTP三次握手,四次揮手。
三次握手 首先解析伺服器dns,找到ip,然後開始建立連線 1.第一次握手 建立連線,客戶端a傳送syn 1 隨機產生seq client isn的資料報到伺服器b,等待伺服器確認。2.第二次握手 伺服器b收到請求後確認聯機 可以接受資料 發起第二次握手請求,ack a的seq 1 syn 1,隨機...