Q:

C# program to demonstrate example of relational operators

belongs to collection: C# Basic Programs | basics

0

Relational operators are used to compare the values and returns Boolean values, if condition is true – they return True, otherwise they return False.

Here is the list of relation operators,

  1. "==" (Equal To) – it returns true, if both operand’s values are equal
  2. "!=" (Not Equal To) – it returns true, if both operand’s values are not equal
  3. "<" (Less Than) – it returns true if first, operand is less than second operand
  4. "<=" (Less Than or Equal To) – it returns true, if either first operand is less than or equal to second operand
  5. ">" (Greater Than) – it returns true, if first operand is greater than second operand
  6. ">=" (Greater Than or Equal To) – it returns true, if either first operand is greater than or equal to second operand

Syntax:

    Operand1 == Operand2
    Operand1 != Operand2
    Operand1 < Operand2
    Operand1 <= Operand2
    Operand1 > Operand2
    Operand1 >= Operand2

Example:

    Input:
    int a = 10;
    int b = 3;
    
    Console.WriteLine("a==b: {0}", (a == b));
    Console.WriteLine("a!=b: {0}", (a != b));
    Console.WriteLine("a>b : {0}", (a > b));
    Console.WriteLine("a>=b: {0}", (a >= b));
    Console.WriteLine("a<b : {0}", (a < b));
    Console.WriteLine("a<=b: {0}", (a <= b));

    Output:
    a==b: False
    a!=b: True
    a>b : True
    a>=b: True
    a<b : False
    a<=b: False

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

C# code to demonstrate example of relational operators

// C# program to demonstrate example of 
// relational operators
using System;
using System.IO;
using System.Text;

namespace IncludeHelp
{
    class Test
    {
        // Main Method 
        static void Main(string[] args)
        {

            int a = 10;
            int b = 3;

            //printing return type
            Console.WriteLine("Return type of == operator: {0}", (a == b).GetType());
            Console.WriteLine("Return type of != operator: {0}", (a != b).GetType());
            Console.WriteLine("Return type of > operator : {0}", (a > b).GetType());
            Console.WriteLine("Return type of >= operator: {0}", (a >= b).GetType());
            Console.WriteLine("Return type of < operator : {0}", (a < b).GetType());
            Console.WriteLine("Return type of <= operator: {0}", (a <= b).GetType());

            //printing return values
            Console.WriteLine("a==b: {0}", (a == b));
            Console.WriteLine("a!=b: {0}", (a != b));
            Console.WriteLine("a>b : {0}", (a > b));
            Console.WriteLine("a>=b: {0}", (a >= b));
            Console.WriteLine("a<b : {0}", (a < b));
            Console.WriteLine("a<=b: {0}", (a <= b));

            //checking conditions
            if (a == b)
                Console.WriteLine("a is equal to b");
            else
                Console.WriteLine("a is not equal to b");
            if (a != b)
                Console.WriteLine("a is not equal to b");
            else
                Console.WriteLine("a is equal to b");
            if (a > b)
                Console.WriteLine("a is greater than b");
            else
                Console.WriteLine("a is not greater than b");
            if (a >= b)
                Console.WriteLine("a is greater than or equal to b");
            else
                Console.WriteLine("a is not greater than or equal to b");
            if (a < b)
                Console.WriteLine("a is less than b");
            else
                Console.WriteLine("a is not less than b");
            if (a <= b)
                Console.WriteLine("a is less than or equal to b");
            else
                Console.WriteLine("a is not less than or equal to b");

            //checking conditions in another way
            if ((a == b) == true)
                Console.WriteLine("a is equal to b");
            else
                Console.WriteLine("a is not equal to b");
            if ((a != b) == true)
                Console.WriteLine("a is not equal to b");
            else
                Console.WriteLine("a is equal to b");
            if ((a > b) == true)
                Console.WriteLine("a is greater than b");
            else
                Console.WriteLine("a is not greater than b");
            if ((a >= b) == true)
                Console.WriteLine("a is greater than or equal to b");
            else
                Console.WriteLine("a is not greater than or equal to b");
            if ((a < b) == true)
                Console.WriteLine("a is less than b");
            else
                Console.WriteLine("a is not less than b");
            if ((a <= b) == true)
                Console.WriteLine("a is less than or equal to b");
            else
                Console.WriteLine("a is not less than or equal to b");

            //hit ENTER to exit the program
            Console.ReadLine();
        }
    }
}

Output

Return type of == operator: System.Boolean
Return type of != operator: System.Boolean
Return type of > operator : System.Boolean
Return type of >= operator: System.Boolean
Return type of < operator : System.Boolean
Return type of <= operator: System.Boolean
a==b: False
a!=b: True
a>b : True
a>=b: True
a<b : False
a<=b: False
a is not equal to b
a is not equal to b
a is greater than b
a is greater than or equal to b
a is not less than b
a is not less than or equal to b
a is not equal to b
a is not equal to b
a is greater than b
a is greater than or equal to b
a is not less than b
a is not less than or equal to b

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# Basic Programs | basics

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to demonstrate example of bitwise opera... >>
<< C# program to demonstrate example of equal to and ...