3.2 If Statements and Control Flow

Screenshot 2024-09-16 at 8 07 34 AM Screenshot 2024-09-16 at 8 07 41 AM

popcorn hack

create test cases that do not satisy the condition above. you can copy/paste the code into the new code cell

public static void main(String[] args) {
    int myAge = 16;
    System.out.println("Current age: " + myAge);
    
    if (myAge >= 16) {
        System.out.println("You can start learning to drive!");
    }

    System.out.println("On your next birthday, you will be " + (myAge + 1) + " years old!");
}
//Hack - Dinesh Sahai
int myAge = 16;
System.out.println("Current age: " + myAge);
    
if (myAge >= 21) {
    System.out.println("You can gamble!");
} else {
    System.out.println("You're too young too gamble");
}

System.out.println("On your next birthday, you will be " + (myAge + 1) + " years old!");
Current age: 16
You're too young too gamble
On your next birthday, you will be 17 years old!

If statements can be used to create chatbots –> Magpie Lab Screenshot 2024-09-25 at 2 40 43 AM

Screenshot 2024-09-25 at 2 40 54 AM

  • the user’s input affects the flow of the program