Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp exercises: Accept the height of a person in centimeter and categorize them


C# Sharp Conditional Statement: Exercise-7 with Solution

Write a C# Sharp program to accept the height of a person in centimeter and categorize the person according to their height.

Sample Solution:-

C# Sharp Code:

using System;  
public class Exercise7  
{  
    public static void Main()
{
    float PerHeight;
    Console.Write("\n\n");
    Console.Write("Accept the height of a person in centimeter and categorize them:\n");
    Console.Write("----------------------------------------------------------------");
    Console.Write("\n\n");

    Console.Write("Input the height of the person (in centimetres):");
    PerHeight = Convert.ToInt32(Console.ReadLine());
 
    if (PerHeight < 150.0)
        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");
    else
        Console.Write("Abnormal height.\n\n");
}   
  
}

Sample Output:

Accept the height of a person in centimeter and categorize them:                                              
----------------------------------------------------------------
Input the height of the person (in centimetres):190                                                           
The person is taller.

Pictorial Presentation:

Conditional Statement: Display the value of an integer n is 1,0 and -1 for the value of an integer m.

Flowchart:

Flowchart: Display the value of an integer n is 1,0 and -1 for the value of an integer m .

C# Sharp Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C# Sharp program to read the value of an integer m and display the value of n is 1 when m is larger than 0, 0 when m is 0 and -1 when m is less than 0.
Next: Write a C program to find the largest of three numbers.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.