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 Damage = Convert.ToInt32(Console.ReadLine());

            Console.Write("몇회 공격 하시겠습니까? : ");
            int num = Convert.ToInt32(Console.ReadLine());

            for (int i=0;i<num ;i++ ) 
            {
                
                    Console.WriteLine("몬스터를 공격({0}) 했습니다.",Damage);
                
                
            }


        }
    }
}

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

11번 문제  (0) 2023.07.20
10번 문제  (0) 2023.07.20
8번 문제  (0) 2023.07.20
7번 문제  (0) 2023.07.20
6번 문제  (0) 2023.07.20

+ Recent posts