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