본문 바로가기

C#/수업 과제

과제 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;

            Console.WriteLine("이름 : {0}", name);
            Console.WriteLine("성별 : {0}", gender);
            Console.WriteLine("나이 : {0}", age);
            Console.WriteLine("신장 : {0}", height);
            Console.WriteLine("체중 : {0}", weight);
            Console.WriteLine("혈액형 : {0}", blood);
            Console.WriteLine("생일 : {0}", birthday);
            Console.WriteLine("{0}Worker", State);



        }
    }
}

'C# > 수업 과제' 카테고리의 다른 글

과제 2 - 5  (0) 2021.08.17
과제 2 - 4  (0) 2021.08.17
과제 2 - 2  (0) 2021.08.17
과제 2 - 1  (0) 2021.08.17
과제 1  (0) 2021.08.16