Program for Relational Operators.

0
03 Java Operators.
Program for Relational Operators.
//RelationalOperatorsDemo.java 
public class RelationalOperatorsDemo
{
    public static void main(String args[])
          {
                     int x = 10, y = 5;

                     System.out.println("x > y : "+(x > y));
                     System.out.println("x < y : "+(x < y));
                     System.out.println("x >= y : "+(x >= y));
                     System.out.println("x <= y : "+(x <= y));
                     System.out.println("x == y : "+(x == y));
                     System.out.println("x != y : "+(x != y));

                     System.out.println(x > y);
                     System.out.println("x > y: "+ x > y);
                     System.out.println("x > y: "+ 10 > 5);
                     System.out.println("x > y: "+ "10" > 5);
                     System.out.println("x > y: 10" > 5);

                     System.out.println(x < y + x > y);

                     System.out.println(10 < 5 + 10 > 5);
                     System.out.println(10 < 15 > 5);

                                 //System.out.println(true > 5);


                     System.out.println((x < y) + (x > y));


                     System.out.println((10 < 5) + (10 > 5));
                     System.out.println((false) + (true));

                     System.out.println((x < y) + (x > y) + "");


                     System.out.println((10 < 5) + (10 > 5));

                     System.out.println((false) + (true) + "");

                     System.out.println((x < y) + ""+ (x > y) );

                     System.out.println((10 < 5) + "" +(10 > 5));
                     System.out.println((false) + "" +(true));
                     System.out.println("false" + "" +(true));
                     System.out.println("false" + true);
                     System.out.println("false" + "true");
                     System.out.println("falsetrue");

                     System.out.println(""+(x < y) +  (x > y) );
              }
  }


 1 
 2 
 3 
 4 
 5 
 6 
 7 
 8 
 9 
 10 
 Next

About the author

Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus. Aenean fermentum, eget tincidunt.

0 comments:

Recent Posts