Java - Example for Logical Operators

Copy and paste the following Java program in Test.java file and compile and run this program −

Example

public class Test {

   public static void main(String args[]) {
      boolean a = true;
      boolean b = false;

      System.out.println("a && b = " + (a&&b));
      System.out.println("a || b = " + (a||b) );
      System.out.println("!(a && b) = " + !(a && b));
   }
}
This will produce the following result −

Output

a && b = false
a || b = true
!(a && b) = true

Comments

Footer