Computer Science, asked by ckcool, 7 months ago

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 mishradhruva19
1

Answer:

Bro Compile it in BlueJ and you will get the answer...

Explanation:

please mark it brainliest

Answered by sunilbaransau
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