ConditionalBlocks

Run Settings
LanguageJava
Language Version
Run Command
public class ConditionalBlocks { public static void main(String[] args) { boolean firstCondition = false; boolean secondCondition = true; if (firstCondition) { System.out.println("Inside the if-statement"); if (secondCondition) { System.out.println("Inside the nested if-statement"); } } else if (secondCondition) { System.out.println(5); } else { System.out.println("Inside the else-statement"); } System.out.println("Outside the if-statement"); } }
Editor Settings
Theme
Key bindings
Full width
Lines