Advertisement
Spocoman

Baking Competition

Oct 6th, 2023
703
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.78 KB | None | 0 0
  1. using System;
  2.  
  3. namespace BakingCompetition
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int bakers = int.Parse(Console.ReadLine());
  10.             int totalSweets = 0;
  11.             double totalSum = 0;
  12.  
  13.             for (int i = 0; i < bakers; i++)
  14.             {
  15.                 string baker = "";
  16.                 int cookies = 0, cakes = 0, waffles = 0;
  17.  
  18.                 while (true)
  19.                 {
  20.                     string command = Console.ReadLine();
  21.                     if (command == "Stop baking!")
  22.                     {
  23.                         break;
  24.                     }
  25.  
  26.                     if (baker == "")
  27.                     {
  28.                         baker = command;
  29.                     }
  30.                     else
  31.                     {
  32.                         string sweet = command;
  33.                         int sweetCount = int.Parse(Console.ReadLine());
  34.                         if (sweet == "cookies")
  35.                         {
  36.                             cookies += sweetCount;
  37.                         }
  38.                         else if (sweet == "cakes")
  39.                         {
  40.                             cakes += sweetCount;
  41.                         }
  42.                         else
  43.                         {
  44.                             waffles += sweetCount;
  45.                         }
  46.                         totalSweets += sweetCount;
  47.                     }
  48.  
  49.                 }
  50.                 totalSum += 1.50 * cookies + 7.80 * cakes + 2.30 * waffles;
  51.                 Console.WriteLine($"{baker} baked {cookies} cookies, {cakes} cakes and {waffles} waffles.");
  52.             }
  53.  
  54.             Console.WriteLine($"All bakery sold: {totalSweets}\nTotal sum for charity: {totalSum:f2} lv.");
  55.         }
  56.     }
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement