public class Main{
public static void main(String args[]){
int a = 2;
int b = 5;
boolean c = a > b;
boolean d = a < b;
System.out.println("2>5 is: " + c);
System.out.println("2<5 is: " + d);
}
}
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment