Advertisement
thespeedracer38

Discount

May 5th, 2021
693
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.57 KB | None | 0 0
  1. import java.util.Scanner;
  2. class Discount
  3. {
  4.   public static void main(String[]args)
  5.   {
  6.     Scanner sc = new Scanner(System.in);
  7.     System.out.print("Enter the price of the laptop: ");
  8.     int laptopPrice = sc.nextInt();
  9.     System.out.print("Enter the price of the printer: ");
  10.     int printerPrice = sc.nextInt();
  11.  
  12.     double laptopDiscount = laptopPrice*(15/100.0);
  13.     double printerDiscount = printerPrice*(10/100.0);
  14.  
  15.     System.out.println("The discount on laptop is "+ laptopDiscount);
  16.     System.out.println("The discount on printer is "+ printerDiscount);
  17.   }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement