不用真假判断,也可以吗?hasNopass在整个程序中有什么重要作用?
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
int[] score = { 85,76,98,100,62,60};//分数
bool hasNopass = false;//记录是否有不及格的,默认没有
for (int i = 0; i < score.Length; i++)
{
if (score[i] < 60)//如果有不及格的
{
//hasNopass=true;
Console.WriteLine("有人不及格");
break;
}
else{
Console.WriteLine("都及格啦!");
break;
}
}
/*//if (hasNopass)
// Console.WriteLine("有人不及格"//);
//else
// Console.WriteLine("都及格啦!"//);
*/
}
}
}