재밌고 어려운 IT를 이해해보자~!

조건문 본문

C#

조건문

언제나즐거운IT 2024. 6. 28. 21:23

if 문

 

using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            int a = 50;
            int b = 51;

            if (a < b) // 참고: 실행될 문장이 한줄이라면 괄호가 없어도 됨.
                Console.WriteLine("b가 a보다 큽니다.");
            if (a > b)
                Console.WriteLine("a가 b보다 큽니다.");
        }
    }
}

 

 switch, break 문

using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            String day = "수";

            switch (day)
            {
                case "일":
                    Console.WriteLine("일요일");
                    break;
                case "월":
                    Console.WriteLine("월요일");
                    break;
                case "화":
                    Console.WriteLine("화요일");
                    break;
                case "수":
                    Console.WriteLine("수요일");
                    break;
                case "목":
                    Console.WriteLine("목요일");
                    break;
                case "금":
                    Console.WriteLine("금요일");
                    break;
                case "토":
                    Console.WriteLine("토요일");
                    break;
                default:
                    Console.WriteLine("아무 요일에도 해당하지 않습니다.");
                    break;
            }
        }
    }
}

'C#' 카테고리의 다른 글

무한루프 제어문  (0) 2024.06.29
반복문  (0) 2024.06.28
연산자(Operators)  (0) 2024.06.28
변수, 데이터 형식, 상수  (0) 2024.06.28
Visual Studio, C# 컴파일  (0) 2024.06.28
Comments