Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class BirthdayParty_05 {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- //бюджет = зала + аниматор + торта + напитки
- //зала = вход -> ok
- //аниматор = зала / 3
- //торта = 20% от зала = 0.2 * зала
- //напитки = торта - 45% = торта - 0.45 * торта
- int hallPrice = Integer.parseInt(scanner.nextLine());
- double animatorPrice = hallPrice / 3.0;
- double cakePrice = 0.2 * hallPrice;
- double drinksPrice = cakePrice - 0.45 * cakePrice;
- double needBudget = hallPrice + animatorPrice + cakePrice + drinksPrice;
- System.out.println(needBudget);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement