public static void Main()
Console.Write("Accept the height of a person in centimeter and categorize them:\n");
Console.Write("----------------------------------------------------------------");
Console.Write("Input the height of the person (in centimetres):");
PerHeight = Convert.ToInt32(Console.ReadLine());
Console.Write("The person is Dwarf. \n\n");
else if ((PerHeight >= 150.0) && (PerHeight <= 165.0))
Console.Write("The person is average heighted. \n\n");
else if ((PerHeight >= 165.0) && (PerHeight <= 195.0))
Console.Write("The person is taller. \n\n");
Console.Write("Abnormal height.\n\n");
Console.WriteLine("\nBy Erick de la Rosa");