Users Online

· Guests Online: 54

· Members Online: 0

· Total Members: 188
· Newest Member: meenachowdary055

Forum Threads

Newest Threads
No Threads created
Hottest Threads
No Threads created

Latest Articles

C# Program to Demonstrate the use of Conditional Logical Operator

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

 

Comments

No Comments have been Posted.

Post Comment

Please Login to Post a Comment.

Ratings

Rating is available to Members only.

Please login or register to vote.

No Ratings have been Posted.
Render time: 1.02 seconds
10,844,496 unique visits