C#練習,應用for,while,do-while迴圈
for迴圈
for (int i = 1; i <= 5; i++)
{
Console.WriteLine(Math.Pow(i, 2));//Math.Pow(i, 2)-->輸出i的2次方
}
while迴圈
int j = 1;
while (j <= 5)
{
Console.WriteLine(Math.Pow(j, 2));
j++;
}
do-while迴圈
int k = 1;
do
{
Console.WriteLine(Math.Pow(k, 2));
k++;
} while (k <= 5);
相關文章
- C語言——迴圈結構(for迴圈,while迴圈,do-while迴圈)C語言While
- Object-C,迴圈語句for,while,do-whileObjectWhile
- C#程式設計基礎第七課:C#中的基本迴圈語句:while迴圈、do-while迴圈、for迴圈、foreach迴圈的使用C#程式設計While
- 實驗5 迴圈結構程式設計(while、do-while語句的應用)程式設計While
- 實驗5迴圈結構程式設計(while、do-while語句的應用)程式設計While
- Python學習-while迴圈練習PythonWhile
- python基礎 while迴圈練習PythonWhile
- c#入門-while迴圈C#While
- while迴圈以及do while迴圈While
- 你只用do-while來實現迴圈?太浪費了!While
- Matlab的if語句switch語句for迴圈while迴圈語句練習MatlabWhile
- 實驗三:分別用for、while和do-while迴圈語句以及遞迴方法計算n!,並輸出算式While遞迴
- Python 為什麼不設計 do-while 迴圈結構?PythonWhile
- Shell指令碼應用 – for、while迴圈語句指令碼While
- while迴圈While
- java學習之while迴圈JavaWhile
- C語言程式設計學習中while迴圈和do……while迴圈C語言程式設計While
- Java入門學習-學習if & else,for迴圈,foreach迴圈,while迴圈的用法。JavaWhile
- PHP For & While 迴圈PHPWhile
- 善用 do-whileWhile
- Java 迴圈 - for, while 及 do…whileJavaWhile
- python 基礎習題6--for迴圈和while迴圈PythonWhile
- 04流程控制 for迴圈,while迴圈While
- python while迴圈PythonWhile
- linux while 迴圈LinuxWhile
- while迴圈補充While
- c# while迴圈_counter++_內含if判斷_breakC#While
- 迴圈高階綜合練習
- Java迴圈結構-for,while及do…whileJavaWhile
- Java while和do while迴圈詳解JavaWhile
- JavaScript中的while迴圈JavaScriptWhile
- python-while迴圈PythonWhile
- python學習手冊13:while及for迴圈PythonWhile
- Java 迴圈結構 - for, while 及 do...whileJavaWhile
- do-while語句和while的區別While
- mysql 中 while 迴圈的用法。MySqlWhile
- Java學習之for迴圈列印菱形練習Java
- python04: while迴圈語句 break continue for in 迴圈PythonWhile