#40313: 解題思路-Python-給我自己


channoliu@gmail.com (channo liu)

學校 : 不指定學校
編號 : 269467
來源 : [36.232.74.48]
最後登入時間 :
2024-06-16 19:34:38
c002. 10696 - f91 -- UVa10696 | From: [36.232.125.239] | 發表日期 : 2024-05-09 20:25

這題我練習用函式遞迴來做

函式f(n):
  如果n小於等於100,回傳f(f(n+11))
  否則回傳(n-10)

主程式

1。我用一個空的list來放結果。s=[]

2。輸入n

3。用while,n不等於0時做:
  呼到函式後的結果整理成所需的字串資料後放入s
  重新輸入n

4。用迴圈印出s

參考程式碼:https://channoliu.blogspot.com/2024/05/zerojudgec002-10696-f91.html

 

 

 

 
ZeroJudge Forum