public static void main(String args[]){
int a = 1;
int b = 2;
int y = 10;
int z = 12;
System.out.println(!(a ==b));
System.out.println(a!=b);
if (100 > y) z = z*2; else z = z/2;
System.out.println(z);
System.out.println(y);
y = y + 2;
System.out.println(y);
}
Output:
The value for !(a ==b) is: true
The value for (a!=b)) is:true
24
10
12
Additional:
Some times (?:) conditional operator is a bit tricky this means that it takes three operands. Together, the operands and the ?: symbol form a conditional expression. The first operand (to the left of the ?) is a boolean expression (i.e., a condition that evaluates to a boolean valuetrue or false), the second operand (between the ? and :) is the value of the conditional expression if the boolean expression is True and the third operand (to the right of the :) is the value of the conditional expression if the boolean expression evaluates to false. For example, the statement:
System.out.println( studentGrade >= 60 ? "Passed" : "Failed" );
%%and//operators. Do you mean&&and||? – delnan Feb 24 '11 at 19:28!(a ==b)anda!=b:NOT(a equals b)anda IS NOT b. – Bart Kiers Feb 24 '11 at 19:38