public static void Main()
Console.Write("Please enter the total number of students :");
int totalStudents = int.Parse(Console.ReadLine());
Console.Write("How many are Programming majors? ");
int progMajors = int.Parse(Console.ReadLine());
double percent = ((double)progMajors / totalStudents ) * 100;
Console.WriteLine("Percentage of Programming Majors: " + percent + "%");