C#条件语句常见错误
常见错误实例:
问题:如果学生成绩高于90分,成绩优秀。在70-90之间良好,60-70合格,60分以下不合格。
static void Main()
{
int score=80;
if (score>=90)
{
Console.WriteLine("优秀");
}
else if(90>score>=70)
{
Console.WriteLine("良好");
}
else if(70>score>=60)
{
Console.WriteLine("合格");
}
else if(score<60)
{
Console.WriteLine("不合格");
}
}
if判断语句中,条件表达式必须是布尔型的。编译器90>score>=70这种表达式结果不认为是布尔型的。应该修改为:else if(score>=70)
而switch结构中常见错误就是忘记写break语句。