我需要幫助。我需要提示用戶輸入介於0和9之間的索引。如果用戶在數組外部輸入了某些內容,那麼我需要使用「if」語句或「try catch」來告訴用戶「沒有這樣的分數存在」 。這是我迄今爲止所擁有的。使用陣列提示用戶輸入並顯示用戶輸出
public class Program
{
public static void Main(string[] args)
{
int[] GameScores = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
Console.WriteLine("Please enter an index between 0 and 9");
int gamescores = int.Parse(Console.ReadLine());
for (int i = 0; i < GameScores.Length;i++)
{
GameScores[i] = int.Parse(Console.ReadLine());
}
} // end Main
'如果用戶在數組外部輸入某些內容,那麼我需要使用「if」語句或「try catch」來告訴用戶「沒有這樣的分數存在」。你有沒有嘗試過這些? (「如果」是要走的路。)什麼阻止你? – 31eee384