Advertisement
Spocoman

Fitness Center

Sep 6th, 2024
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.42 KB | None | 0 0
  1. import java.io.PrintStream;
  2. import java.util.Scanner;
  3.  
  4. public class Main {
  5.     public static void main(String[] args) {
  6.         Scanner scanner = new Scanner(System.in);
  7.         int visitors = Integer.parseInt(scanner.nextLine()),
  8.                 back = 0,
  9.                 chest = 0,
  10.                 legs = 0,
  11.                 abs = 0,
  12.                 proteinBar = 0,
  13.                 proteinShake = 0;
  14.         String action;
  15.  
  16.         for (int i = 0; i < visitors; i++) {
  17.             action = scanner.nextLine();
  18.             switch (action) {
  19.                 case "Back" -> back++;
  20.                 case "Chest" -> chest++;
  21.                 case "Legs" -> legs++;
  22.                 case "Abs" -> abs++;
  23.                 case "Protein bar" -> proteinBar++;
  24.                 default -> proteinShake++;
  25.             }
  26.         }
  27.  
  28.         System.out.printf(
  29.                 """
  30.                        %d - back
  31.                        %d - chest
  32.                        %d - legs
  33.                        %d - abs
  34.                        %d - protein shake
  35.                        %d - protein bar
  36.                        %.2f%% - work out
  37.                        %.2f%% - protein
  38.                        """
  39.                 , back, chest, legs, abs, proteinShake, proteinBar,
  40.                 100.0 * (back + chest + legs + abs) / visitors,
  41.                 100.0 * (proteinShake + proteinBar) / visitors
  42.         );
  43.     }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement