【C#】繰り返し処理の書き方~while/for/foreach~
~簡単な自己紹介~
- 嫁と猫3匹と暮らすフルリモートの三十路SE
- 投資・節約・副業で資産形成中
- 現在の金融資産は約1,750万円、めざせアッパーマス層(資産3,000万円)
while
List<string> stations = new List<string>(){
"東京",
"品川",
"新横浜"
};
int cnt = 0;
while (cnt < stations.Count) {
Console.WriteLine(stations[cnt]);
cnt++;
}
// 東京
// 品川
// 新横浜
for
List<string> stations = new List<string>(){
"東京",
"品川",
"新横浜"
};
for (int cnt = 0; cnt < stations.Count; cnt++) {
Console.WriteLine(stations[cnt]);
}
// 東京
// 品川
// 新横浜
foreach
List<string> stations = new List<string>(){
"東京",
"品川",
"新横浜"
};
foreach (string station in stations) {
Console.WriteLine(station);
}
// 東京
// 品川
// 新横浜
以上になります。
お疲れさまでした。