반응형
반응형
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..
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..
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..
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; ..
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; ..
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..