{
Console.WriteLine("請輸入數組中的10個元素數:");
int[] a=new int[10];
for (int i = 0; i < a.Length; i++)
{
a[i] = int.Parse(Console.ReadLine());
}
Console.WriteLine("輸入的元素數是:");
for (int i = 0; i < a.Length; i++)
{
Console.WriteLine(a[i]);
}
//Console.ReadLine();
代碼運行沒有問題,
請輸入數組中的10個元素數:
1
1
1
1
1
1
1
1
1
1
輸入的元素數是:
1
1
1
1
1
1
1
1
1
1