do--while ループ内からデータをコピーしてループの外で繰り返すのに問題があります。これは、各生徒のテストの点数が名前と同じ行に入力される分割機能の最中です。これが非常に単純な質問である場合は申し訳ありませんが、修正方法がどこにも見つかりません。助けてくれてありがとう。
do {
Console.Write("Enter the student's name followed by his/her score on the same line:");
studentAndScore = Console.ReadLine();
if (studentAndScore == "")
{
break;
}
string[] parsedInput;
parsedInput = studentAndScore.Split();
string student = parsedInput[0] = students[0];
score = int.Parse(parsedInput[1]);
score = studentScores[0];
i++;
} while (i<=MAX);
Console.WriteLine("The test scores of the students are:");
Console.WriteLine("students \t scores \t");
//And I need to repeat the list of student names and scores here