分別使用while迴圈、do…while迴圈和for迴圈輸出1~100之間的所有偶數
分別使用while迴圈、do…while迴圈和for迴圈輸出1~100之間的所有偶數
For迴圈:
public class Home6{
public static void main(String[] args) {
for(int X=1;X<=100;X++){
if (X%2 == 0){
System.out.println(X+",");
}
}
}
}
While迴圈:
public class Home8{
public static void main(String[] args) {
int X=1;
while(X<=100){
if (X%2 == 0){
System.out.println(X);
}
X++;
}
}
}
輸出結果:2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,
相關文章
- while迴圈以及do while迴圈While
- C語言——迴圈結構(for迴圈,while迴圈,do-while迴圈)C語言While
- Java 迴圈 - for, while 及 do…whileJavaWhile
- Java while和do while迴圈詳解JavaWhile
- for 迴圈與 while 迴圈While
- while迴圈 case迴圈While
- C語言程式設計學習中while迴圈和do……while迴圈C語言程式設計While
- Java迴圈結構-for,while及do…whileJavaWhile
- while迴圈While
- while迴圈和do迴圈、緩衝區、一維陣列While陣列
- C#程式設計基礎第七課:C#中的基本迴圈語句:while迴圈、do-while迴圈、for迴圈、foreach迴圈的使用C#程式設計While
- Java 迴圈結構 - for, while 及 do...whileJavaWhile
- PHP For & While 迴圈PHPWhile
- python while迴圈PythonWhile
- 04流程控制 for迴圈,while迴圈While
- 實驗三:分別用for、while和do-while迴圈語句以及遞迴方法計算n!,並輸出算式While遞迴
- 五、使用者輸入和while迴圈While
- C#練習,應用for,while,do-while迴圈C#While
- python-while迴圈PythonWhile
- while迴圈補充While
- 15-python之while迴圈PythonWhile
- JavaScript中的while迴圈JavaScriptWhile
- sass的迴圈for,while,eachWhile
- python 基礎習題6--for迴圈和while迴圈PythonWhile
- Java基礎 迴圈語句 for while do.....while語句JavaWhile
- while + else 使用,while死迴圈與while的巢狀,for迴圈基本使用,range關鍵字,for的迴圈補充(break、continue、else) ,for迴圈的巢狀,基本資料型別及內建方法While巢狀資料型別
- 探討兩種迴圈表示方法的區別,while迴圈與for迴圈的小總結While
- python04: while迴圈語句 break continue for in 迴圈PythonWhile
- 七 while迴圈語句While
- Python中for迴圈和while迴圈有什麼區別?Python入門教程PythonWhile
- while read line 與for迴圈的區別While
- 資料型別——集合與while迴圈資料型別While
- c#入門-while迴圈C#While
- 【js迴圈語句】for與while的區別JSWhile
- while迴圈/格式化輸出/運算子/編碼While
- Linux while 迴圈中使用ssh問題LinuxWhile
- Python的if else 巢狀 和forin while 迴圈Python巢狀While
- Python學習小結—使用者輸入和While迴圈PythonWhile