格式:
while條件: 迴圈體
無限迴圈
終止迴圈:1、改變條件,使其不成了
2、break 中斷迴圈
死迴圈
whiletrue:
print(
"我們不一樣
")
迴圈100次
count = 1flag =true
while
flag:
print(count)
count +=1
if count > 100
: flag =false
或者也可以這樣寫:
count = 1while count <= 100:
print(count)
count +=1
執行結果: . . .9596
9798
99100
0到100相加
count = 1sum = 0
while count <=100
: sum = sum +count
count +=1
print(sum)
或
print(sum(range(101)))
break
whiletrue:
print(
1111
) print(
2222
)
break
print(
333)
執行結果:
1111
2222
使用break迴圈100次
count = 1while
true:
print(count)
count +=1
if count > 100
:
break
continue:跳過本次迴圈
count = 1while count <10
: print(count)
continue
count +=1
執行結果:11
1111
11.....
while迴圈語句
例子如下 public static void main string args 表示式滿足就執行迴圈體,直到不滿足條件就跳出迴圈 分別求出1 200之間的奇數之和,偶數之和 int i 1,sum 0,sum1 0 while i 201 if i 2 0 i system.out.println...
while迴圈語句
案例 珠穆朗瑪峰 完整格式 初始化語句 while 條件判斷語句 執行初始化語句 執行條件判斷語句,看其結果是true還是false 如果是true,繼續執行 如果是false,結束迴圈 執行迴圈體語句 執行條件控制語句 回到2繼續 需求 世界上最高山峰是珠穆朗瑪峰 8844.43m 8844433...
while迴圈語句
計算輸出1 2 3 100的所有數字的相加和n 1s 0 while n 101 s s n n n 1 print s 計算輸出1 2 3 4 5.99的所有數字的和n 1s 0 while n 100 temp n 2 if temp 0 s s n else s s n n n 1 print...