Phát biểu else trong C#

Phát biểu else

Đối trọng đối với if là một phát biểu else. Một phát biểu else cho phép bạn chỉ ra một phát biểu thay thế để chạy if
nếu điều kiện phát biểu if là false:

string input = Console.ReadLine();
int score = Convert.ToInt32(input);
if (score == 100)

Console.WriteLine(“A+! Perfect score!”);

else

Console.WriteLine(“Try again.”);

Khi code này chạy, nếu score chính xác là 100, phát biểu sau if thực thi. Trong tất cả trường hợp khác, phát biểu sau
else thực thi.
Bạn cũng có thể gói phát biểu else quanh một phát biểu khối:

char letterGrade;
if (score == 100)
{
Console.WriteLine(“A+! Perfect score!”);
letterGrade = ‘A’;
}
else
{
Console.WriteLine(“Try again.”);
letterGrade = ‘B’;
}

Chia sẻ