class Test { public Test() { Console.WriteLine("20180822 코드 결과값입니다."); // 여기 아래서부터 연습하세요! bool a = true && false; string result = "a: " + a; Console.WriteLine(result); bool b = a && false; bool c = b || true; Console.WriteLine(result + " b: "+b+" c: "+c); int maxHp = 24; int hp = maxHp; int damage = 50; int armorHp = 100; Console.WriteLine("방어구를 착용했습니다."); Console.WriteLine("최대체력이 "+armorHp +" 만..
class Test { string monName; int monHp; float monAtk; string heroName; int heroHp; float heroAtk; public Test() { monName = "좀비123"; monHp = 543; monAtk = 12.3f; heroName = "용사456"; heroHp = 100; heroAtk = 10; Console.WriteLine("몬스터의 이름 " + monName + "입니다."); Console.WriteLine("몬스터의 체력은 " + monHp + "입니다."); Console.WriteLine("몬스터의 공격력은 " + monAtk + "입니다."); Console.WriteLine("용사의 이름 " + heroName..