迴圈高階 猜年齡

2022-09-01 07:00:14 字數 968 閱讀 9546

專案1:允許使用者最多猜三次,中間猜對了,直接跳出迴圈。

age = 56count =0

while count <= 2:

count = count + 1input_number = input("

please input your age")

if int(input_number) !=age:

print("

you are so stupid")

if int(input_number) ==age:

print("

you are so clever\nthe age is 56")

break

view code

專案2:允許使用者猜三次,中間猜對了,直接跳出迴圈,沒有猜對詢問使用者是否還想玩,想玩繼續猜。

age = 44count =0

p = "y"

while count <= 3:

input_number = input("

please input your age:")

count +=1

if int(input_number) ==age:

print("

you are so clever,the age is right.")

break

elif (count == 3) and int(input_number) !=age:

choice = input("

the time is enough,please input your choice y?orn")

if choice ==p:

count =0

print("

you are so obstinate")

else

:

pass

view code

猜年齡遊戲

猜年齡遊戲公升級版 要求 允許使用者最多嘗試3次 每嘗試3次後,如果還沒猜對,就問使用者是否還想繼續玩,如果回答y或y,就繼續讓其猜3次,以此往復,如果回答n或n,就退出程式 如何猜對了,就直接退出 import random 生成隨機數 n random.randint 0,200 允許使用者最多...

day12 猜年齡(跳出多重迴圈)

小明帶兩個妹妹參加元宵燈會。別人問她們多大了,她們調皮地說 我們倆的年齡之積是年齡之和的6倍 小明又補充說 她們可不是雙胞胎,年齡差肯定也不超過8歲啊。請你寫出 小明的較小的妹妹的年齡。1 自定義異常 raise 2 自定義函式 return 3 使用帶else字句的迴圈結構 young 1whil...

程式設計題 猜年齡

智力早熟,11歲就上了大學。他曾在1935 1936年應邀來中國清華大學講學。一次,他參加某個重要會議,年輕的臉孔引人注目。於是有人詢問他的年齡,他回答說 我年齡的立方是個4位數。我年齡的4次方是個6位數。這10個數字正好包含了從0到9這10個數字,每個都恰好出現1次。請你推算一下,他當時到底有多年...