Notice
Recent Posts
Recent Comments
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
Total
관리 메뉴

충분히 쌓여가는

20. 관계연산자 본문

초보자를 위한 C# 200제

20. 관계연산자

빌드이너프 2024. 9. 22. 12:22

관계연산자 종류 6가지

==, >, >=, <, <=, !=

두 개의 피연산자 사이의 크기 관계를 체크할 때 사용.

관계가 참이면 true이고, 아니면 false가 된다.

 

코드

using System;


namespace A020_RelationalOperator
{
    class Program
    {
        static void Main(string[] args)
        {
            bool result;
            int first = 10, second = 20;

            result = (first == second);
            Console.WriteLine("{0} == {1} : {2}", first, second, result);

            result = (first > second);
            Console.WriteLine("{0} > {1} : {2}", first, second, result);

            result = (first < second);
            Console.WriteLine("{0} < {1} : {2}", first, second, result);

            result = (first >= second);
            Console.WriteLine("{0} >= {1} : {2}", first, second, result);

            result = (first <= second);
            Console.WriteLine("{0} <= {1} : {2}", first, second, result);

            result = (first != second);
            Console.WriteLine("{0} != {1} : {2}", first, second, result);
        }
    }
}

 

실행

'초보자를 위한 C# 200제' 카테고리의 다른 글

23. 조건연산자  (0) 2024.09.22