Spocoman

Easter Decoration

Nov 27th, 2021 (edited)
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.36 KB | None | 0 0
  1. using System;
  2.  
  3. namespace EasterDecoration
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int clients = int.Parse(Console.ReadLine());
  10.             double total = 0;
  11.  
  12.             for (int i = 0; i < clients; i++)
  13.             {
  14.                 string stock = Console.ReadLine();
  15.                 int counter = 0;
  16.                 double sum = 0;
  17.  
  18.                 while (stock != "Finish")
  19.                 {
  20.                     switch (stock)
  21.                     {
  22.                         case "basket":
  23.                             sum += 1.5;
  24.                             break;
  25.  
  26.                         case "wreath":
  27.                             sum += 3.8;
  28.                             break;
  29.  
  30.                         case "chocolate bunny":
  31.                             sum += 7;
  32.                             break;
  33.                     }
  34.                     stock = Console.ReadLine();
  35.                     counter++;
  36.                 }
  37.  
  38.                 if (counter % 2 == 0)
  39.                 {
  40.                     sum *= 0.8;
  41.                 }
  42.  
  43.                 total += sum;
  44.                 Console.WriteLine($"You purchased {counter} items for {sum:F2} leva.");              
  45.             }          
  46.             Console.WriteLine($"Average bill per client is: {total / clients:F2} leva.");
  47.         }
  48.     }
  49. }
  50.  
Add Comment
Please, Sign In to add comment