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.. 더보기 과제 2 - 2 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 = 165; float weight = 52.5f; string blood = "A형"; string birthday = "9월 10일"; Worker State = Worker.Desire; .. 더보기 과제 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; .. 더보기 과제 1 using System; namespace HelloWorld { public class Program { public static void Main() { String name; name = "Hand Axe"; String type; type = "Axe"; float dps; dps = 3.2f; string damage; damage = "2-3"; float aps; aps = 1.30f; Console.WriteLine("{0}", name); Console.WriteLine("{0}", type); Console.WriteLine("{0} {1}", dps, "Damage Per Second"); Console.WriteLine("{0} {1}", damage , "Damage"); Cons.. 더보기 이전 1 2 다음