public static void Main()
Console.WriteLine("\n___This is a student database that can be fill up only for 16 people only__");
string[] student = new string[16];
for (int a =0; a<= 15; a++)
Console.WriteLine("\nEnter student's {0} name\t :", a + 1);
student[a] = Console.ReadLine();
for (int b = 0; b <= 15; b++)
Console.WriteLine("_____________________________________");
Console.WriteLine("\nWhat age student {0} is? \t :", b + 1);
int ages = Convert.ToInt32(Console.ReadLine());
int[] marks = new int[16];
for (int c =0; c <= 15; c++ )
Console.WriteLine("_____________________________________");
Console.WriteLine("\nMARKS for student {0} ", c);
Console.WriteLine("\nBahasa Melayu \t :");
int bm = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("\nScience \t :");
int sc = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("\nmathematics \t :");
int mt = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("\nEnglish \t :");
int eng = Convert.ToInt32(Console.ReadLine());
int result = (bm + sc + mt + eng) / 4;
Console.WriteLine("\nAVERAGE of the total score is\t: " + result);
Console.WriteLine("Print Result?");
int answer = Convert.ToInt32(Console.ReadLine());
if (answer==1) {Console.WriteLine( marks [c]);Console.WriteLine( age [b]);Console.WriteLine(student[a]);}
else {Console.WriteLine("Bye");}