public static void Main()
Console.WriteLine(" MENU PROGRAM RESPONSI : ");
Console.WriteLine(" 1. Luas Bola ");
Console.WriteLine(" 2. Faktorial Bilangan ");
Console.WriteLine(" 3. Rata - Rata Data IPK ");
Console.Write("\n\n Masukkan Nomor Case : ");
switchmilih = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("\n 1. Luas Bola ");
Console.Write(" Masukkan jari-jari bola : ");
jarijari = Convert.ToInt32(Console.ReadLine());
double luasbola = 4 * pi * jarijari;
Console.WriteLine(luasbola);
Console.WriteLine("\n 3. Rata - Rata Data IPK ");
Console.Write(" Masukkan Jumlah Data : ");
int jumlahdata = Convert.ToInt32(Console.ReadLine());
int[] array = new int[jumlahdata];
for (int a = 0; a < array.Length; a++)
while(!int.TryParse(Console.ReadLine(), out array[a]))
Console.WriteLine("Entered not a character");
average = sum/array.Length;
Console.WriteLine("Jumlah Data : " + sum);
Console.WriteLine("Rata-Rata Data : " + average);