Advertisement
veronikaaa86

05. Birthday Party

Jun 7th, 2021
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class P05BirthdayParty {
  4. public static void main(String[] args) {
  5. Scanner scanner = new Scanner(System.in);
  6.  
  7. int priceRentalHall = Integer.parseInt(scanner.nextLine());
  8.  
  9. double priceCake = priceRentalHall * 0.20;
  10. double priceDrinks = priceCake - (priceCake * 0.45);
  11. double priceAnimator = priceRentalHall / 3.0;
  12.  
  13. double sum = priceRentalHall + priceCake + priceDrinks + priceAnimator;
  14.  
  15. System.out.printf("%.1f", sum);
  16. }
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement