EasyCastleUNITY

2023/07/20 퀴즈 9번 본문

C#프로그래밍

2023/07/20 퀴즈 9번

EasyCastleT 2023. 7. 20. 16:24
using System;

namespace LearnDotnet
{
    internal class Program
    {
        static void Main(string[] args)
        {
            Console.Write("영웅의 공격력:");
            string attackChar = Console.ReadLine();
            int attack = Convert.ToInt32(attackChar);

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

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

        }
    }
}

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

2023/07/20 퀴즈 11번  (0) 2023.07.20
2023/07/20 퀴즈 10번  (0) 2023.07.20
2023/07/20 퀴즈 8번  (0) 2023.07.20
2023/07/20 퀴즈 7번  (0) 2023.07.20
2023/07/20 퀴즈 6번  (0) 2023.07.20