Advertisement
CoineTre

B-day Party

Oct 9th, 2020
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.44 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class BirthdayParty {
  4.     public static void main(String[] args) {
  5.         Scanner scan = new Scanner (System.in);
  6.         int rent = Integer.parseInt (scan.nextLine ());
  7.         double cake = rent * (20.0/100);
  8.         double drinks = cake - (cake * (45.0/100));
  9.         double animator = rent/3.0;
  10.         double budget = rent + cake + drinks + animator;
  11.         System.out.println (budget);
  12.  
  13.  
  14.  
  15.     }
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement