desislava_topuzakova

05. Birthday Party

Jun 7th, 2020
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.00 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.         //цена за тортата -> 20 % от залата = 0.2 * наем на залата
  9.         //цена за напитки -> тортата - 45% = тортата - 0.45 * тортата
  10.         //цена за аниматора -> 1 / 3 от наем на залата = наем на залата / 3
  11.         //разходите = наем на залата + торта + напитки + аниматор
  12.         int hallPrice = Integer.parseInt(scanner.nextLine());
  13.         double cakePrice = 0.2 * hallPrice;
  14.         double drinksPrice = cakePrice - 0.45 * cakePrice; //0.55 * cakePrice
  15.         double animatorPrice = hallPrice / 3.0;
  16.         double expenses = hallPrice + cakePrice + drinksPrice + animatorPrice;
  17.         System.out.println(expenses);
  18.     }
  19. }
Add Comment
Please, Sign In to add comment