전체 글 썸네일형 리스트형 과제 2 - 1 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HelloWorld { enum Worker { Desire, Soul } class Program { static void Main(string[] args) { string name = "스텔라 유니벨"; string gender = "여성"; int age = 14; int height = 148; float weight = 39.8f; string blood = "B형"; string birthday = "6월 25일"; Worker State = Worker.Desire; .. 더보기 수업 2 - 5 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HelloWorld { enum State { Air, Ground } class Program { static void Main(string[] args) { String race = "Viking"; int gas = 75; float sight = 39.9f; bool isFly = true; State eState = State.Air; Console.WriteLine("race: {0}", race); Console.WriteLine("Gas: {0}", gas); Cons.. 더보기 수업 2 - 4 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HelloWorld { enum State { Idle, Move, Attack, Die } class Program { static void Main(string[] args) { String race = "Protoss"; int minerals = 100; float time = 39.9f; bool isAttack = true; State eState = State.Attack; Console.WriteLine("race: {0}", race); Console.WriteLin.. 더보기 수업 2 - 3 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HelloWorld { enum State { LiftOff, UnLiftOff } class Program { static void Main(string[] args) { String race = "Terran"; int hp = 550; float armor = 1.1f; bool isLiftOff = true; State eState = State.LiftOff; Console.WriteLine("race: {0}", race); Console.WriteLine("hit poi.. 더보기 수업 2 - 2 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HelloWorld { enum State { Cloacked, UnCloacked } class Program { static void Main(string[] args) { State eState = State.UnCloacked; String race = "Terran"; int sight = 7; float speed = 6.67f; string hotKey = "W"; bool isCloaked = false; Console.WriteLine("race: {0}", race.. 더보기 수업 2 - 1 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HelloWorld { enum State { Burrow, UnBurrow } class Program { static void Main(string[] args) { State eState = State.UnBurrow; String race = "Zerg"; int sight = 8; float speed = 6.1f; string hotKey = "L"; bool isBurrow = false; Console.WriteLine("race: {0}", race); Console.. 더보기 이전 1 ··· 3 4 5 6 7 8 9 ··· 40 다음