프로그래밍
C# paiza 14 - while문3
노마드선샤인
2020. 5. 9. 20:09
728x90
// whileによるループ処理3
using System;
public class Program{
public static void Main(){
var i = 19;
while(i>10)
{
Console.WriteLine(i);
i=i-2;
}
}
}
// 19 17 15 13 11
728x90