SCV 생성 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace study01 { class Program { static void Main(string[] args) { string commandNmae = "커멘드센터"; int commandHp = 1500; string scvName = "SCV"; int scvHp = 45; Console.WriteLine("{0}가 생성되었습니다.", commandNmae); Console.WriteLine("{0} ({1} / {2})", commandNmae, commandHp, com..