본문 바로가기
KDT/C# 프로그래밍

23/07/20 퀴즈1

by 잰쟁 2023. 7. 20.
728x90

(과제 내용)

줄넘기를 했습니다.

줄넘기를 했습니다.

줄넘기를 했습니다.

줄넘기를 했습니다.

줄넘기를 했습니다.

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<5;i++)
            {
                Console.WriteLine("줄넘기를 했습니다.");
            }
        }          
    }
}

'KDT > C# 프로그래밍' 카테고리의 다른 글

23/07/20 퀴즈3  (0) 2023.07.20
23/07/20 퀴즈2  (0) 2023.07.20
enum 응용  (0) 2023.07.20
디아블로 아이템 열거형식(enum)  (0) 2023.07.20
디아블로 아이템5  (0) 2023.07.20