Java nested if statements are easy! 🎟️

preview_player
Показать описание
#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){
price *= 0.7;
}
else{
price *= 0.9;
}
}
else{
if(isSenior){
price *= 0.8;
}
else{
price *= 1;
}
}

}
}
Рекомендации по теме
Комментарии
Автор

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);
}
}

BroCodez