OR Operator Example: Logical || and Bitwise | in java

Java Programming Language / Operators in java

1361

Program:

 //Logical OR || and Bitwise OR |
class OperatorExample{
public static void main(String args[])
	{
	int a=10;
	int b=6;
	int c=30;
	System.out.println(a > b || a < c);//true || true = true
	System.out.println(a > b | a < c);//true | true = true
	System.out.println(a > b || a++ < c);//true || true = true
	System.out.println(a);//10 because second condition is not checked
	System.out.println(a > b | a ++ < c);//true | true = true
	System.out.println(a);//11 because second condition is checked
   }
}

Output:

true
true
true
10
true
11
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.