Lab 009 | Lab Java 3 Question 2 | If, Else If

preview_player
Показать описание
CODING dalam comment.

Song used:

--------------------------------------------------------------------------------------------

Title: Midnight Snack
Type of music: Retro Hip Hop
Mood: Vintage

--------------------------------------------------------------------------------------------

#aimanqm #aiman_qm #javalab
Рекомендации по теме
Комментарии
Автор

CODING:
import java.util.Scanner;
public class PracticalLab3q2 {

public static void main(String[] args) {
int items;

Scanner in = new Scanner(System.in);
System.out.print("Enter your number of items: ");
items = in.nextInt();

if(items<10){
System.out.println("No discount viable.");
System.out.println("Your prices are RM" + (items*99));
}

else if(items<20){
System.out.println("You got a 20% discount");
System.out.println("Your prices are RM" + (items*99*0.8));
}

else if (items<30){
System.out.println("You got a 30% discount");
System.out.println("Your prices are RM" + (items*99*0.7));
}

else if(items<40){
System.out.println("You got a 40% discount");
System.out.println("Your prices are RM" + (items*99*0.6));
}

else if(items>39){
System.out.println("You got a 50% discount");
System.out.println("Your prices are RM" + (items*99*0.5));
}
}

}

aimanqm
join shbcf.ru