C# 썸네일형 리스트형 과제 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.. 더보기 과제 2 - 4 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 = 15; int height = 155; float weight = 47.7f; string blood = "AB형"; string birthday = "2월 27일"; Worker State = Worker.Desire.. 더보기 과제 2 - 3 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 = 175; float weight = 64.2f; string blood = "AB형"; string birthday = "5월 29일"; Worker State = Worker.Desire.. 더보기 이전 1 2 3 4 다음