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();
}