public static void Main()
Console.WriteLine("Please Enter ID Number: ");
ID = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Please Enter Name: ");
username = Console.ReadLine();
Console.WriteLine("Please Enter the Amount of KW Consumed this Month: ");
KWconsumed = Convert.ToInt32(Console.ReadLine());
KWMATH = (KWconsumed * 1.20);
Console.WriteLine("Hello {0}, ID number: {1}. You consumed {2}KW of energy this month. Our rate for this amount is $1.20 per KW. This brings you to a grand total of ${3}", username, ID, KWconsumed, KWMATH);
else if (KWconsumed > 199 && KWconsumed < 400)
KWMATH = (KWconsumed * 1.50);
Console.WriteLine("Hello {0}, ID number: {1}. You consumed {2}KW of energy this month. Our rate for this amount is $1.50 per KW. This brings you to a grand total of ${3}", username, ID, KWconsumed, KWMATH);
else if (KWconsumed >= 400 && KWconsumed < 600)
KWMATH = (KWconsumed * 1.80);
surcharge = (KWconsumed * 1.80) * 0.15;
total = (KWMATH + surcharge);
Console.WriteLine("Hello {0}, ID number: {1}. You consumed {2}KW of energy this month. Our rate for this amount is $1.80 per KW (${3}) plus a surcharge of %15 (${4}) of the total because you exceeded the 400KW limit. This brings you to a grand total of ${5}", username, ID, KWconsumed, KWMATH, surcharge, total);
else if (KWconsumed >= 600)
KWMATH = (KWconsumed * 2.00);
surcharge = (KWconsumed * 2.00) * 0.15;
total = (KWMATH + surcharge);
Console.WriteLine("Hello {0}, ID number: {1}. You consumed {2}KW of energy this month. Our rate for this amount is $2.00 per KW (${3}) plus a surcharge of %15 (${4}) of the total because you exceeded the 400KW limit. This brings you to a grand total of ${5}", username, ID, KWconsumed, KWMATH, surcharge, total);