using System;
public class Lab13Test
{
public static void Main()
//โปรแกรมรับค่าจำนวนเต็มเข้า Array จำนวน 5 ตัว จากนั้นแสดงตัวเลขเหล่านั้นออกทางจอภาพ โดยแสดงจากเลขตัวสุดท้ายก่อนจนมาถึงตัวแรกตามลำดับ
int[] n = new int[5];
for(int a = 0; a<5; a++)
Console.Write("Input Number{0} : ", a+1);
n[a] = Convert.ToInt32(Console.ReadLine());
}
Console.Write(" {0} {1} {2} {3} {4}", n[4], n[3], n[2], n[1], n[0]);