Advertisement
GabrielHr00

08. Basketball Equipment

Jan 5th, 2025
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.12 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class BasketballEquipment {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.         int annualFee = Integer.parseInt(scanner.nextLine());
  7.  
  8.         //•   Баскетболни кецове – цената им е 40% по-малка от таксата за една година
  9.         //•   Баскетболен екип – цената му е 20% по-евтина от тази на кецовете
  10.         //•   Баскетболна топка – цената ѝ е 1 / 4 от цената на баскетболния екип
  11.         //•   Баскетболни аксесоари – цената им е 1 / 5 от цената на баскетболната топка
  12.  
  13.         double sneakersPrice = annualFee - (annualFee * 0.40);
  14.         double setPrice = sneakersPrice - (sneakersPrice * 0.20);
  15.         double ballPrice = setPrice * 1/4;
  16.         double accPrice = ballPrice * 1/5;
  17.  
  18.         double totalSum = sneakersPrice + setPrice + ballPrice + accPrice + annualFee;
  19.  
  20.         System.out.println(totalSum);
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement