728x90
(과제 내용)
줄넘기를 1회 했습니다.
줄넘기를 2회 했습니다.
줄넘기를 3회 했습니다.
줄넘기를 4회 했습니다.
using System;
using System.Diagnostics.Eventing.Reader;
using System.Diagnostics.Tracing;
using System.Runtime.InteropServices;
using System.Runtime.Serialization.Formatters;
namespace LearnDotnet
{
internal class Program
{
static void Main(string[] args)
{
for(int i =0;i<4;i++)
{
Console.WriteLine("줄넘기를 {0}회 했습니다.",i+1);
}
}
}
}
'KDT > C# 프로그래밍' 카테고리의 다른 글
23/07/20 퀴즈4 (0) | 2023.07.20 |
---|---|
23/07/20 퀴즈3 (0) | 2023.07.20 |
23/07/20 퀴즈1 (0) | 2023.07.20 |
enum 응용 (0) | 2023.07.20 |
디아블로 아이템 열거형식(enum) (0) | 2023.07.20 |