為甚麼代碼錯誤
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};//分数
for (int i = 0; i < score.Length; i++)
{
if (score[i] < 60)//如果有不及格的
{
int x;//记录有不及格的
x=score[i];
}
}
if (x>0)
Console.WriteLine("有人不及格");
else
Console.WriteLine("都及格啦!");
}
}
}