Java 迴圈結構 - for, while 及 do...while
順序結構的程式語句只能被執行一次。
如果您想要同樣的操作執行多次,就需要使用迴圈結構。
Java中有三種主要的迴圈結構:
- while 迴圈
- do…while 迴圈
- for 迴圈
在 Java5 中引入了一種主要用於陣列的增強型 for 迴圈。
例項
Test.java 檔案程式碼:
public
class
Test
{
public
static
void
main
(
String
[
]
args
)
{
int
x
=
10
;
while
(
x
<
20
)
{
System
.
out
.
print
(
"
value of x :
"
+
x
)
;
x
++;
System
.
out
.
print
(
"
\n
"
)
;
}
}
}
以上例項編譯執行結果如下:
value of x : 10value of x : 11value of x : 12value of x : 13value of x : 14value of x : 15value of x : 16value of x : 17value of x : 18value of x : 19
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70012480/viewspace-2852347/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Java迴圈結構-for,while及do…whileJavaWhile
- Java 迴圈 - for, while 及 do…whileJavaWhile
- C語言——迴圈結構(for迴圈,while迴圈,do-while迴圈)C語言While
- while迴圈以及do while迴圈While
- Java while和do while迴圈詳解JavaWhile
- while迴圈While
- java學習之while迴圈JavaWhile
- java死迴圈while(true)vsfor(;;)JavaWhile
- PHP For & While 迴圈PHPWhile
- python3 筆記9.程式流程結構--迴圈結構(while,for)Python筆記While
- 04流程控制 for迴圈,while迴圈While
- 學java16迴圈結構Java
- Java入門學習-學習if & else,for迴圈,foreach迴圈,while迴圈的用法。JavaWhile
- Java基礎 迴圈語句 for while do.....while語句JavaWhile
- python while迴圈PythonWhile
- linux while 迴圈LinuxWhile
- while迴圈補充While
- 迴圈結構for
- 迴圈結構
- 實驗5 迴圈結構程式設計(while、do-while語句的應用)程式設計While
- 實驗5迴圈結構程式設計(while、do-while語句的應用)程式設計While
- Python 為什麼不設計 do-while 迴圈結構?PythonWhile
- 探討兩種迴圈表示方法的區別,while迴圈與for迴圈的小總結While
- python學習手冊13:while及for迴圈PythonWhile
- plsql_迴圈結構_do while_do unitl_while loop_end loop測試(一)SQLWhileOOP
- JavaScript中的while迴圈JavaScriptWhile
- python-while迴圈PythonWhile
- 05迴圈結構
- py迴圈結構
- while + else 使用,while死迴圈與while的巢狀,for迴圈基本使用,range關鍵字,for的迴圈補充(break、continue、else) ,for迴圈的巢狀,基本資料型別及內建方法While巢狀資料型別
- C語言程式設計學習中while迴圈和do……while迴圈C語言程式設計While
- Java入門系列-09-迴圈結構Java
- c#入門-while迴圈C#While
- mysql 中 while 迴圈的用法。MySqlWhile
- 雲端計算學習路線原始碼框架筆記:while迴圈結構原始碼框架筆記While
- C#程式設計基礎第七課:C#中的基本迴圈語句:while迴圈、do-while迴圈、for迴圈、foreach迴圈的使用C#程式設計While
- Object-C,迴圈語句for,while,do-whileObjectWhile
- 好程式設計師Java教程分享Java 迴圈結構程式設計師Java