Skip to content

PRO TIP Block youtube.com at the DNS level — Pi-hole, NextDNS or your hosts file — but allow youtube-nocookie.com and i.ytimg.com. These tutorials keep playing; the rabbit hole does not.

Learning without distractions

Nested if statements are easy! 🎟️

39.1K views on YouTube

#java #javatutorial #javacourse

public class Main {
public static void main(String[] args) {

boolean isStudent = true;
boolean isSenior = true;
double price = 9.99;

if(isStudent){
if(isSenior){
System.out.println(“You get a senior discount of 20%”);
System.out.println(“You get a student discount of 10%”);
price *= 0.7;
}
else{
System.out.println(“You get a student discount of 10%”);
price *= 0.9;
}
}
else{
if(isSenior){
System.out.println(“You get a senior discount of 20%”);
price *= 0.8;
}
else{
price *= 1;
}
}

System.out.printf(“The price of a ticket is: $%.2f”, price);
}
}