Relational Operators In Java Example
Chapter:
Operators
Last Updated:
11-06-2016 19:42:08 UTC
Program:
/* ............... START ............... */
public class JavaRelationalOperatorExample {
public static void main(String args[]) {
int a = 20;
int b = 30;
System.out.println("a == b = " + (a == b));
System.out.println("a != b = " + (a != b));
System.out.println("a > b = " + (a > b));
System.out.println("a < b = " + (a < b));
System.out.println("b >= a = " + (b >= a));
System.out.println("b <= a = " + (b <= a));
}
}
/* ............... END ............... */
Output
a == b = false
a != b = true
a > b = false
a < b = true
b >= a = true
b <= a = false
Notes:
-
The equality and relational operators determine if one operand is greater than, less than, equal to, or not equal to another operand.
- == Equal to
- != Not equal to
- > Greater than
- >= Greater than or equal to
- < Less than
- <= Less than or equal to
Tags
Relational Operators, Java