0
java
what is different between if else
1 Answer
+ 16
If the if condition is valuated to false, the else case will be executed and the if case skipped.
If the if condition is valuated to true, the if case will be executed and the else case skipped.