수업 3 - 1 연습 문제
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HelloWorld { class Program { static void Main(string[] args) { Console.Write("캐릭터 진영을 입력하세요 "); string faction = Console.ReadLine(); Console.Write("캐릭터 이름을 입력하세요 "); string name = Console.ReadLine(); Console.Write("캐릭터 공격력을 입력하세요 "); string ad = Console.ReadLine(); Consol..