C# Program to Demonstrate the use of Conditional Logical Operator
Posted by Superadmin on August 11 2022 07:21:04

C# Program to Demonstrate the use of Conditional Logical Operator

 

 

This is a C# Program to illustrate the use of conditional logical operator.

Problem Description

This C# Program Illustrates the use of Conditional Logical Operators.

Problem Solution

Here the ternary operator (?:) is a conditional operator. It is a convenient operator for cases where one of two values are to be picked, depending on the conditional expression.

Program/Source Code

Here is source code of the C# Program to Illustrate the use of Conditional Logical Operators. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.

/*
 * C# Program to Illustrate the use of Conditional Logical Operator
 */
using System;
public class Program
{
    static void Main()
    {
        int age;
        Console.WriteLine("Enter the Age :");
        age=int.Parse(Console.ReadLine());
        bool adult = age >= 18 ? true : false;
        Console.WriteLine("Adult : {0}", adult);
        Console.Read();
    }
}
Program Explanation

In this C# program, we are entering the age using age variable. Using conditional operator we are checking the person is adult or not, here the ternary operator (?:) is a conditional operator. It is a convenient operator for cases where one of two values is to be picked, depending on the conditional expression.

 
Runtime Test Cases
 
Enter the Age : 10
Adult : false