在C#中,變量的范圍檢查和異常處理可以通過條件語句和try-catch語句來實現。
int age = 20;
if (age < 0 || age > 120)
{
Console.WriteLine("Age is out of range!");
}
try
{
int result = 10 / 0; // 會拋出一個除零異常
}
catch (DivideByZeroException ex)
{
Console.WriteLine("Error: " + ex.Message);
}
在try塊中執行可能引發異常的代碼,如果出現異常則會跳轉到對應的catch塊進行處理。可以根據不同的異常類型來進行不同的處理操作。