#01:条件によるくり返し処理1 - while
ここでは、数字を0から5まで表示させます。
そのために、条件に合わせてループ処理する while という繰り返し命令について学習します。
// whileによるループ処理
using System;
public class Program{
public static void Main(){
// カウンタ変数の初期化
while (条件式) {
// 繰り返し処理
// カウンタ変数の更新
}
}
}
このチャプターで作成した、C# のコードです。
// whileによるループ処理
using System;
public class Program{
public static void Main(){
var i=0; // カウンタ変数の初期化
while(i <= 5) { // 0 -> 1 -> 2 -> 3 ・・・ 5 -> 6
Console.WriteLine("hello world " + i); // 繰り返し処理
i = i + 1; // カウンタ変数の更新
}
Console.WriteLine("last " + i);
}
}
- while文 - 繰り返し処理 - while (C# リファレンス)
https://msdn.microsoft.com/ja-jp/library/2aeyhxcd.aspx
- while文の書き方 | 反復処理
http://ufcpp.net/study/csharp/st_loop.html
- C# によるプログラミング入門
http://ufcpp.net/study/csharp/