C#/수업 과제 썸네일형 리스트형 과제 2 - 10 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HelloWorld { enum State { Idle, Concentration } class Program { static void Main(string[] args) { string name = "아르메 글렌스티드"; string gender = "여성"; int age = 17; int height = 156; float weight = 50.5f; string blood = "AB형"; string birthday = "9월 12일"; State eState = State... 더보기 과제 2 - 9 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 = 19; int height = 158; float weight = 50.1f; string blood = "O형"; string birthday = "4월 15일"; Worker State = Worker.Soul; Consol.. 더보기 과제 2 - 8 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 = 17; int height = 162; float weight = 48.8f; string blood = "O형"; string birthday = "10월 10일"; Worker State = Worker.Soul; Conso.. 더보기 과제 2 - 7 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 = 16; int height = 152; float weight = 41.1f; string blood = "A형"; string birthday = "3월 2일"; Worker State = Worker.Soul; Cons.. 더보기 과제 2 - 6 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 = 18; int height = 169; float weight = 49.9f; string blood = "A형"; string birthday = "11월 4일"; Worker State = Worker.Desire; C.. 더보기 과제 2 - 5 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 = 17; int height = 178; float weight = 75.8f; string blood = "O형"; string birthday = "7월 28일"; Worker State = Worker.Desire; C.. 더보기 이전 1 2 다음