標題:
while迴圈 (二)
[打印本頁]
作者:
鄭繼威
時間:
2024-1-24 16:08
標題:
while迴圈 (二)
計算 1+2+3+...+10 之和
sum=0
n=1
while(n<=10):
sum+=n #累加
n+=1 #控制迴圈
print("1+2+3+...+10={}".format(sum))
複製代碼
作者:
李承睿
時間:
2024-1-25 15:31
[code][code][code][code][code][code][code][code][code][code][code][code][code][code]a=0
b=1
while(b<=10):
a+=b
b+=1
print(f"1+2+3+...+10={a}")
複製代碼
[/code][/code][/code][/code][/code][/code][/code][/code][/code][/code][/code][/code][/code][/code]
作者:
鄧塏諺
時間:
2024-1-25 15:31
s=0
n=1
while(n<=10):
s+=n
n+=1
print("1+2+34+5+6+7+8+9+10{}".format(s))
複製代碼
作者:
許晨希
時間:
2024-1-25 15:31
sum=0
n=1
while(n<=10):
sum=sum+n
n=n+1
print("1+2+3+...+10={}".format(sum))
複製代碼
作者:
蘇子禔
時間:
2024-1-25 15:33
s=0
n=1
while(n<=10):
s+=n
n+=1
print('1+2+3+4+5+6+7+8+9+10={ }'.format(s))
複製代碼
作者:
鄭傳諭
時間:
2024-1-25 15:35
s=0
n=1
while(n<=10):
print(n)
s=s+n
n=n+1
print("1+2+3+...+10={}".format(sum))
複製代碼
作者:
李品蓁
時間:
2024-1-25 15:38
本帖最後由 李品蓁 於 2024-1-25 15:42 編輯
a=0
b=1
while(b<=10):
a=a+b
b+=1
print("1+2+3+...+10={}".format(a))
複製代碼
[code]
作者:
鄭繼威
時間:
2024-1-25 15:38
6
作者:
劉娀德
時間:
2024-1-25 15:38
a=0
b=1
while(b<=10):
a+=b
b+=1
print(f"1+...+10={a}")
複製代碼
作者:
劉乙頡
時間:
2024-1-25 15:40
s=0
n=1
while(n<=10):
s+=n
n+1
print("1+2+3+...+10={}"...)
.foramt(sum)
作者:
蘇宥駥
時間:
2024-1-25 15:43
sum=0
s=1
while(s<=10):
sum+=s #累加
s+=1 #控制迴圈
print("1+2+3+...+10={}".format(sum))
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2