Advertisement
Spocoman

Oscars ceremony

Sep 8th, 2024
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Main {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.         int hallRent = Integer.parseInt(scanner.nextLine());
  7.         double statues = hallRent * 0.7,
  8.                 catering = statues * 0.85,
  9.                 soundSystem = catering / 2;
  10.  
  11.         System.out.printf("%.2f\n", hallRent + statues + catering + soundSystem);
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement