Spocoman

02. Report System

Nov 21st, 2021 (edited)
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.25 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ReportSystem
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double sum = double.Parse(Console.ReadLine());
  10.             double cash = 0;
  11.             double card = 0;
  12.             int cashC = 0;
  13.             int cardC = 0;
  14.             int counter = 1;
  15.             while (true)
  16.             {
  17.                 string count = Console.ReadLine();
  18.                 if (count != "End")
  19.                 {
  20.  
  21.                     int money = int.Parse(count);
  22.  
  23.                     if ((cash + card) >= sum)
  24.                     {
  25.                         Console.WriteLine($"Average CS: {cash / cashC:F2}");
  26.                         Console.WriteLine($"Average CS: {card / cardC:F2}");
  27.                         break;
  28.                     }
  29.                     if (counter % 2 != 0)
  30.                     {
  31.                         if (money > 0 && money <= 100)
  32.                         {
  33.                             cash += money;
  34.                             Console.WriteLine("Product sold!");
  35.                             cashC++;
  36.                         }
  37.                         else
  38.                         {
  39.                             Console.WriteLine("Error in transaction!");
  40.                         }
  41.                     }
  42.                     else
  43.                     {
  44.                         if (money > 10)
  45.                         {
  46.                             card += money;
  47.                             Console.WriteLine("Product sold!");
  48.                             cardC++;
  49.                         }
  50.                         else
  51.                         {
  52.                             Console.WriteLine("Error in transaction!");
  53.                         }
  54.                     }
  55.                 }
  56.                 else
  57.                 {
  58.                     Console.WriteLine("Failed to collect required money for charity.");
  59.                     break;
  60.                 }
  61.                 if ((cash + card) >= sum)
  62.                 {
  63.                     Console.WriteLine($"Average CS: {cash / cashC:F2}");
  64.                     Console.WriteLine($"Average CC: {card / cardC:F2}");
  65.                     break;
  66.                 }
  67.                 counter++;
  68.             }  
  69.         }
  70.     }
  71. }
  72.  
Add Comment
Please, Sign In to add comment