public void main()
{ int a=10, b=25;
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) ); } Find the output
Answers
Answered by
1
Answer:
Bro Compile it in BlueJ and you will get the answer...
Explanation:
please mark it brainliest
Answered by
0
Bro Compile it in BlueJ and you will get the answer...I do not have, there may be wrong in your question
Similar questions