public static void Main()
Console.WriteLine("Body Mass Index Calculator");
Console.WriteLine("Enter Height (inches):");
n1 = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Enter Weight (lbs):");
n2 = Convert.ToDouble(Console.ReadLine());
double n4 = Math.Pow(n1,2);
double BMI = Math.Round(n3/n4);
Console.WriteLine("Your body mass index: " + BMI );
if (BMI<19)Console.WriteLine ("Your BMI is unhealthy. You are underweight. A healthy BMI is between 19 and 25.");
else if (BMI>25)Console.WriteLine ("Your BMI is unhealthy. You are overweight. A healthy BMI is between 19 and 25.");
else Console.WriteLine ("Your BMI is healthy. Congrats. A healthy BMI is between 19 and 25.");