public static void Main()
Console.WriteLine("Accept the height of a person in centimeters and categorize them:");
Console.WriteLine("------------------------------------------------------------------");
Console.Write("What is the height of the person (in centimeters? ");
ht = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("This person has Dwarfism");
else if ((ht >=150) && (ht <=165))
Console.WriteLine("This person is average height.");
else if ((ht >= 165) && (ht <= 195))
Console.WriteLine("This person is above average in height.");
Console.Write("This person is extremely tall.");