如何在C#的輸入?並在該輸入上使用循環。如何在C#中輸入
這裏是我的代碼,到目前爲止,我試圖
static void Main(string[] args)
{
int[] ar = new int[10002];
int n = Convert.ToInt32(Console.ReadLine());
for(int i = 0;i < n; i++)
{
ar[i] = Convert.ToInt32(Console.ReadLine());
}
for (int i = 0; i < n; i++)
{
Console.WriteLine(ar[i]);
}
Console.ReadKey();
}
什麼不工作這麼遠? –
它顯示錯誤消息,如「輸入字符串格式不正確」。 –
你必須給一個整數作爲輸入。這就是錯誤顯示的原因。你可能在給一個包含非數字字符的字符串。 –