eg: static void Main(string[] args)
{
int[] array1 = new int [10];
Console.WriteLine("向数组输入十个学生的成绩:");
for (int i = 0; i <10;i++ )
{
array1[i] = Console.Read();
}
for (int j = 0; j < 10; j++)
{
Console.WriteLine("第{0}个学生的成绩为:{1}", j, array1[j]);
}
Console.ReadLine();
}
模仿c的写法做的,在程序运行的时候只输入几个数字,那个小黑框就自动关了,是什么原因?