Quick actions

cmd+k|ctrl+k

Navigation

Languages

java-operators6

Snippet info

Language

Java

Visibility

public

Author

w3xue

Created

2023-01-06T07:28:54.094289Z

Updated

2023-01-06T07:28:54.094289Z

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));
  }
}
INFO