Advertisement
Spocoman

11. HappyCat Parking

Nov 22nd, 2021 (edited)
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.04 KB | None | 0 0
  1. using System;
  2.  
  3. namespace HappyCatParking
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int days = int.Parse(Console.ReadLine());
  10.             int hours = int.Parse(Console.ReadLine());
  11.             double total = 0;
  12.  
  13.             for (int i = 1; i <= days; i++)
  14.             {
  15.                 double dayPrice = 0;
  16.  
  17.                 for (int j = 1; j <= hours; j++)
  18.                 {            
  19.                     if (i % 2 == 0 && j % 2 == 1)
  20.                     {
  21.                         dayPrice += 2.5;
  22.                     }
  23.                     else if (i % 2 == 1 && j % 2 == 0)
  24.                     {
  25.                         dayPrice += 1.25;
  26.                     }
  27.                     else
  28.                     {
  29.                         dayPrice++;
  30.                     }
  31.                 }
  32.                 total += dayPrice;
  33.                 Console.WriteLine($"Day: {i} - {dayPrice:f2} leva");
  34.             }
  35.             Console.WriteLine($"Total: {total:f2} leva");
  36.         }
  37.     }
  38. }
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement