본문 바로가기
C#/코드의 흐름제어

[C#]if와 else

by 과아아앙 2021. 3. 31.
static void Main(string[] args)
{
	int hp = 0;

    bool isDead = (hp <= 0);
	if (isDead)
	{
    	Console.WriteLine("You are dead!");
    }
    else
    {
    	Console.WriteLine("You are alive!")
    }
}
static void Main(string[] args)
{
    int choice = 0; // 0:가위, 1:바위 2:보
    if (choice == 0)
	{
        Console.WriteLine("가위입니다.");
	}
    else if (choice == 1)
    {

        Console.WriteLine("바위입니다.");

    }
    else if (choice == 2)
    {
        Console.WriteLine("보입니다.");
    }
    else
    {
        Console.WriteLine("치트키입니다.");
    }   
}

c에서 쓰는 if else문과 같다.

if (조건)

else if (조건)

else

의 형태로 사용하면 된다.

 

'C# > 코드의 흐름제어' 카테고리의 다른 글

[C#]for문  (0) 2021.03.31
[C#]while과 do while  (0) 2021.03.31
[C#]상수와 열거형  (0) 2021.03.31
[C#]가위-바위-보 게임  (0) 2021.03.31
[C#]switch와 삼항연산자  (0) 2021.03.31