The Java equivalent follows the same syntactical rules as before.
-
age = 16
if age >= 18:
@@ -57,8 +58,11 @@ if score >= 90:
print("You are not yet eligible to vote.")
public class IfElseExample {
public static void main(String[] args) {
@@ -72,6 +76,7 @@ if score >= 90:
}