Advertisement
veronikaaa86

08. Basketball Equipment

Oct 31st, 2021
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. package firstSteps;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class P08BasketballEquipment {
  6. public static void main(String[] args) {
  7. Scanner scanner = new Scanner(System.in);
  8.  
  9. int yearTax = Integer.parseInt(scanner.nextLine());
  10.  
  11. double priceShoes = yearTax * 0.60;
  12. double priceSuit = priceShoes * 0.80;
  13. double priceBall = priceSuit / 4;
  14. double priceAcc = priceBall / 5;
  15.  
  16. double totalSum = yearTax + priceShoes + priceSuit + priceBall + priceAcc;
  17.  
  18. System.out.println(totalSum);
  19.  
  20. }
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement