
This is a lot of text just to have something ...
This is a lot of text just to have something ...
This is a lot of text just to have something ...
This is a lot of text just to have something ...
This is a lot of text just to have something ...
/*
     * C# Program to Accept the Height of a Person & Categorize as 
     * Tall, Dwarf or Average
     */
    using System;
    class program
    {
        public static void Main()
        {
            float height;
            Console.WriteLine("Enter  the Height (in centimeters) \n");
            height = int.Parse(Console.ReadLine());
            if (height < 150.0)
                Console.WriteLine("Dwarf \n");
            else if ((height >= 150.0) && (height <= 165.0))
                Console.WriteLine(" Average Height \n");
            else if ((height >= 165.0) && (height <= 195.0))
                Console.WriteLine("Taller \n");
            else
                Console.WriteLine("Abnormal height \n");
        }
    }
This is past the image.
![[paper clip]](/cours/static/images/paper_clip_tilt.png) 
| last modified | size | ||
|  | IMG_20170924_205338.jpg | Fri Oct 31 2025 06:55 pm | 3.1M | 
|  | Screen_Shot_2018-02-13_at_11.51.32_AM.png | Fri Oct 31 2025 06:55 pm | 150K | 
|  | Screen_Shot_2018-02-26_at_2.26.45_PM.png | Fri Oct 31 2025 06:55 pm | 409K |