nesting이라고 하던가 헷갈리는데 ㅇㅅㅇ

int score = 85;

if (score >= 60)
{
    if (score >= 90)
    {
        Console.WriteLine("A학점!");
    }
    else
    {
        Console.WriteLine("합격이지만 A는 아님");
    }
}
else
{
   

이런걸

int score = 85;

if (score < 60)
{
    Console.WriteLine("불합격 ㅠㅠ");
    return;
}

if (score >= 90)
{
    Console.WriteLine("A학점!");
}
else
{
    Console.WriteLine("합격이지만 A는 아님");
}
이렇게 빼는거 ㅇㅅㅇ

- dc official App