Sign up for FlowVella
Sign up with FacebookAlready have an account? Sign in now
By registering you are agreeing to our
Terms of Service
Loading Flow
100 * 2 == 10000
True or False?
3.2 != 32
5 + 10 * 2 == 30
== & !=
<, <=, > & >=
10 < 5
2 <= 5
5.0 >= 5.0
System.out
int x = 15;
int y = 100;
System.out.println (x > y);
System.out.println( x <15);
System.out.println(x== y);
System.out.println(x != 5);
System.out.println(x*y >0);