Advertisement
Spocoman

Vet Parking

Sep 10th, 2024
416
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.78 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 days = Integer.parseInt(scanner.nextLine()),
  7.                 hours = Integer.parseInt(scanner.nextLine());
  8.         double total = 0;
  9.  
  10.         for (int day = 1; day <= days; day++) {
  11.             double sum = 0;
  12.             for (int hour = 1; hour <= hours; hour++) {
  13.                 if (day % 2 == 1) {
  14.                     if (hour % 2 == 1) {
  15.                         sum += 1.00;
  16.                     } else {
  17.                         sum += 1.25;
  18.                     }
  19.                 } else {
  20.                     if (hour % 2 == 1) {
  21.                         sum += 2.50;
  22.                     } else {
  23.                         sum += 1.00;
  24.                     }
  25.                 }
  26.             }
  27.             System.out.printf("Day: %d - %.2f leva\n", day, sum);
  28.             total += sum;
  29.         }
  30.  
  31.         System.out.printf("Total: %.2f leva\n", total);
  32.     }
  33. }
  34.  
  35. Решение с тернарен опеаратор:
  36.  
  37. import java.util.Scanner;
  38.  
  39. public class Main {
  40.     public static void main(String[] args) {
  41.         Scanner scanner = new Scanner(System.in);
  42.         int days = Integer.parseInt(scanner.nextLine()),
  43.                 hours = Integer.parseInt(scanner.nextLine());
  44.         double total = 0;
  45.  
  46.         for (int day = 1; day <= days; day++) {
  47.             double sum = 0;
  48.             for (int hour = 1; hour <= hours; hour++) {
  49.                 sum += day % 2 == 1 ? (hour % 2 == 1 ? 1.00 : 1.25) : (hour % 2 == 1 ? 2.50 : 1.00);
  50.             }
  51.             System.out.printf("Day: %d - %.2f leva\n", day, sum);
  52.             total += sum;
  53.         }
  54.  
  55.         System.out.printf("Total: %.2f leva\n", total);
  56.     }
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement