public static void Main(string[] args)
{
Int32[] inNum=new int[10];
for (int i = 1; i < 11; i++) {
Console.WriteLine("Please input the {0} Num:",i);
inNum[i-1]=Convert.ToInt32(Console.ReadLine());
}
for (int i = 10; i > 0; i--) {
Console.WriteLine("The {0} Num is: {1}",i.ToString(),inNum[i-1]);
}
Console.Write("Press any key to continue . . . ");
Console.ReadKey(true);
}
ArrayList a = new ArrayList(10);
a.Add(1);
a.Add(2);
a.Add(3);
a.Reverse();
只会c...