第三章 while迴圈

2021-10-20 01:21:43 字數 480 閱讀 6822

1、while迴圈就是讓執行的**按照指定的次數重複執行。

2、while語句以及縮排部分是乙個完整的**塊。

3、運算子

4、在編寫程式時,除特殊要求,否則迴圈的計數從0開始。

5、eg:計算 0 ~ 100 之間所有數字的累計求和結果

result = 0

i = 0

while i <= 100:

print(i)

result += i

i += 1

print(「0~100之間的數字求和結果 = %d」 % result)

6、break跳出整個迴圈。

7、continue結束本次迴圈繼續執行下次迴圈。

8、while迴圈巢狀:while裡還有while。可列印小星星或者九九乘法表等。

第三章 scala迴圈

1 三個基本的迴圈表示式 scala 1 to 10 res0 scala.collection.immutable.range.inclusive range 1,2,3,4,5,6,7,8,9,10 scala 1.to 10 res1 scala.collection.immutable.ra...

第三章 從迴圈到網路

include include stdlib.h define n 64 define tpb 32 每個執行緒塊包含32個執行緒 device float scale int i,int n device float distance float x1,float x2 global void d...

第三章 C 迴圈與方法

第一節1 for迴圈入門 語法 for 條件表示式 練習 第三章作業 1.寫乙個程式列印100到200的值 2.寫乙個程式從10列印到1 3.寫乙個程式列印10到30之間的所有偶數 第二節2 變數的宣告和賦值 變數的作用域 第三節for迴圈 語法 while 條件表示式 等差數列 1 n n n 1...