public static void Main()
double d1 = 1.00000000000000001;
double d2 = 1.00000000000000002;
double d3 = 1.000000000000005;
if (d1 == d2) Console.WriteLine("Both double numbers are represented with the same bit combination");
Console.WriteLine("d1 = " + d1);
Console.WriteLine("d2 = " + d2);
Console.WriteLine("d3 = " + d3);
Console.WriteLine("What is your major?");
string major = Console.ReadLine();
Console.WriteLine("What is your score?");
string input = Console.ReadLine();
bool ValidInt = int.TryParse(input, out score);
Console.WriteLine ("Score must be a whole number");
bool ValidRange = (score >= 0 && score <= 100);
Console.WriteLine("Score range must be whole number between 0 and 100");