본문 바로가기

C#

수업 3 - 2 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HelloWorld { class Program { static void Main(string[] args) { ConsoleKeyInfo info = Console.ReadKey(); Console.WriteLine("info.Key : {0}", info.Key); Console.WriteLine("info.KeyChar {0}", info.KeyChar); int number = Convert.ToInt32(info.KeyChar); Console.WriteLine("ASCII.. 더보기
수업 3 - 1 연습 문제 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HelloWorld { class Program { static void Main(string[] args) { Console.Write("캐릭터 진영을 입력하세요 "); string faction = Console.ReadLine(); Console.Write("캐릭터 이름을 입력하세요 "); string name = Console.ReadLine(); Console.Write("캐릭터 공격력을 입력하세요 "); string ad = Console.ReadLine(); Consol.. 더보기
수업 3 연습 문제 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HelloWorld { class Program { static void Main(string[] args) { Console.Write("아이디를 입력하세요 "); string id = Console.ReadLine(); Console.Write("비밀번호를 입력하세요 "); string password = Console.ReadLine(); Console.Write("성별을 입력하세요 "); string sex = Console.ReadLine(); Console.WriteLin.. 더보기
수업 3 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HelloWorld { class Program { static void Main(string[] args) { Console.Write("종족을 입력하세요 "); String race; race = Console.ReadLine(); Console.Write("시야를 입력하세요 "); String sight; sight = Console.ReadLine(); int sightnum = Convert.ToInt32(sight); Console.WriteLine("Race : {0}".. 더보기
과제 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.. 더보기