public static void Main()
int numGood = 0, numBad = 0, invalidInput = 0, count = 0, sum = 0;
Console.Write("Enter your rating: ");
rating = Console.ReadLine();
Console.Write("Enter your rating: ");
rating = Console.ReadLine();
Console.WriteLine("ERROR!");
Console.WriteLine("The percentage of the Good of the total valid responses: {0:P1}", (double)numGood/sum);
Console.WriteLine("The percentage of the Bad of the total valid responses: {0:P1}", (double)numBad/sum);
Console.WriteLine("The percentage of the Invalid of the total valid responses: {0:P1}", (double)invalidInput/sum);