Spocoman

Vet Parking

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