Program for Logical Operators.

0
03 Java Operators.
Program for Logical Operators:
//LogicalOperatorsDemo.java 
   public class LogicalOperatorsDemo
            {
                   public static void main(String args[])
                         {
                                   boolean x = true;
                                   boolean y = false;

                                   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 : "+(!x));
                         }
      }

 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