using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Runtime.InteropServices;
using System.Security.Policy;
using System.Text;
using System.Threading.Tasks;

namespace LearnDotnet
{

    internal class Program
    {
        
       
        static void Main(string[] args)
        {
           
           Console.Write("줄넘기 횟수를 입력 하세요: ");
           int num = Convert.ToInt32(Console.ReadLine());

           for(int i=0;i<num+1 ;i++ ) 
            {
                if (i == 0)
                {
                    
                }
                else
                {
                    Console.WriteLine("줄넘기를 {0}회 했습니다.",i);
                }
                
            }


        }
    }
}

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

10번 문제  (0) 2023.07.20
9번 문제  (0) 2023.07.20
7번 문제  (0) 2023.07.20
6번 문제  (0) 2023.07.20
5번 문제  (0) 2023.07.20

+ Recent posts