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

23/07/20 퀴즈9

by 잰쟁 2023. 7. 20.
728x90

(과제 내용)

영웅의 공격력 : 2
몇회 공격 하시겠습니까? : 3
몬스터를 공격(2) 했습니다.
몬스터를 공격(2) 했습니다.
몬스터를 공격(2) 했습니다.

 

using System;
using System.Diagnostics.Eventing.Reader;
using System.Diagnostics.Tracing;
using System.Runtime.InteropServices;
using System.Runtime.Serialization.Formatters;
using System.Security.Permissions;

namespace LearnDotnet
{
    internal class Program
    {
       
        static void Main(string[] args)
        {
            Console.Write("영웅의 공격력 : ");
            string input1 = Console.ReadLine();
            Console.Write("몇회 공격 하시겠습니까? : ");
            string input2 = Console.ReadLine();
            int count = Convert.ToInt32(input1);
            int count2 = Convert.ToInt32(input2);
            for(int i =0;i<count2;i++)
            {
                Console.WriteLine("몬스터를 공격({0}) 했습니다.",count);
            }


               
            
                
        }          
    }
}

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

23/07/21 스타크래프트 1  (0) 2023.07.21
23/07/20 퀴즈10~13  (0) 2023.07.20
23/07/20 퀴즈8  (0) 2023.07.20
23/07/20 퀴즈7  (0) 2023.07.20
23/07/20 퀴즈6  (0) 2023.07.20