본문 바로가기

C#

C# 100점만점 if

반응형

if 사용시

 

using System;

namespace Season
{
    class Program
    {
        static void Main(string[] args)
        {
            int x = 100;
            if(x==100)
               {Console.WriteLine("만점"); }
            else 
                {Console.WriteLine("노력");}
            Console.WriteLine();
        }
        }
    }

-> 복잡함

 


조건 ? 를 사용

 

using System;

namespace Season
{
    class Program
    {
        static void Main(string[] args)
        {
            int x = 100;
            Console.WriteLine((x==100)?"만점":"노력");

        }
        }
    }

로 줄일 수 있음

반응형

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

1~20 곱 구하기  (0) 2021.07.22
과코드, 학과이름 배열 선언 및 초기화  (0) 2021.07.22
C# 이름 바꾸기 폴더명 바꾸기  (0) 2021.07.21
C# 계절 판정  (0) 2021.07.21
C# BMI 계산  (0) 2021.07.21