Advertisement
desislava_topuzakova

05.Birthsay Party

Oct 4th, 2020
842
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.80 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class BirthdayParty_05 {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.  
  7.         //бюджет = зала + аниматор + торта + напитки
  8.         //зала = вход -> ok
  9.         //аниматор = зала / 3
  10.         //торта = 20% от зала = 0.2 * зала
  11.         //напитки = торта - 45% = торта - 0.45 * торта
  12.  
  13.         int hallPrice = Integer.parseInt(scanner.nextLine());
  14.         double animatorPrice = hallPrice / 3.0;
  15.         double cakePrice = 0.2 * hallPrice;
  16.         double drinksPrice = cakePrice - 0.45 * cakePrice;
  17.  
  18.         double needBudget = hallPrice + animatorPrice + cakePrice + drinksPrice;
  19.         System.out.println(needBudget);
  20.     }
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement