글
C# paiza 12 - While문
프로그래밍
2020. 5. 9. 19:54
728x90
SMALL
// whileによるループ処理
using System;
public class Program{
public static void Main(){
// カウンタ変数の初期化
var i =0;
while (i<=5) {
// 繰り返し処理
// カウンタ変数の更新
Console.WriteLine("Hello World" + i);
i= i+1;
}
Console.WriteLine("last " + i);
}
}
// 0부터 5까지는 Hello world 0 1 2 3 4 5 출력하고
// 마지막에는 6을 출력한다.
///
// whileによるループ処理
using System;
public class Program{
public static void Main(){
var i = 0;
while (i<10)
{
Console.WriteLine("ハローpaizaラーニング");
i++;
}
}
}
728x90
'프로그래밍' 카테고리의 다른 글
C# paiza 14 - while문3 (0) | 2020.05.09 |
---|---|
C# paiza 13 - while문 2 (0) | 2020.05.09 |
C# paiza 11 - 서기년도/ 헤이세이와 쇼와로 바꾸기 (0) | 2020.05.09 |
C# paiza 10 - 크리티컬 데미지와 회피 (0) | 2020.05.09 |
C# paiza 9 - 제비뽑기(おみくじ) (0) | 2020.05.09 |