+ 1
How is the action in system.out.println?
3 Answers
+ 2
It works like this,
1 higher than 2 if true print 0 else print 1
It is same as else if statement
if(1 > 2){
....
}
else{
....
}
+ 1
Thank you! Played with the code and figured out :)
0
Good job! đ You welcome đ