我需要编写一个程序,将数据读入 int 类型的数组。有效值从 0 到 10。您的程序应确定输入了多少值。输出不同条目的列表以及该条目出现的次数。”
我在粗体部分遇到问题,这就是我目前所拥有的......
static void Main(string[] args)
{
Console.WriteLine("How many scores will you enter?");
int total = 0;
string inValue;
string Size = Console.ReadLine();
int arraySize = Convert.ToInt32(Size);
int [] ScoreArray = new int [arraySize];
for (int i = 0; i < ScoreArray.Length; i++)
{
Console.Write("Enter a Number between 0 and 10, #{0}: ", i + 1);
inValue = Console.ReadLine();
ScoreArray[i] = Convert.ToInt32(inValue);
total += ScoreArray[i];
}
Console.WriteLine("Number of scores entered: " + arraySize);
Console.Read();
}