Enter the Age : 10 Adult : false
Users Online
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
Forum Threads
Latest Articles
Articles Hierarchy
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.
This C# Program Illustrates the use of Conditional Logical Operators.
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.
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(); } }
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.