Spocoman

Easter Competition

Nov 27th, 2021 (edited)
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.33 KB | None | 0 0
  1. using System;
  2.  
  3. namespace EasterCompetition
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int easterBread = int.Parse(Console.ReadLine());
  10.             string baker1 = "";
  11.             int maxNum = 0;
  12.  
  13.             for (int i = 0; i < easterBread; i++)
  14.             {
  15.                 string baker = Console.ReadLine();
  16.                 int bakerpoints = 0;
  17.  
  18.                 while (true)
  19.                 {
  20.                     string points = Console.ReadLine();
  21.                     if (points == "Stop")
  22.                     {
  23.                         if (maxNum < bakerpoints)
  24.                         {
  25.                             baker1 = baker;
  26.                             maxNum = bakerpoints;
  27.                             Console.WriteLine($"{baker1} has {maxNum} points.");
  28.                             Console.WriteLine($"{baker1} is the new number 1!");
  29.                         }
  30.                         else
  31.                         {
  32.                             Console.WriteLine($"{baker} has {bakerpoints} points.");
  33.                         }
  34.                         break;
  35.                     }
  36.  
  37.                     bakerpoints += int.Parse(points);
  38.                 }
  39.             }
  40.             Console.WriteLine($"{baker1} won competition with {maxNum} points!");
  41.         }
  42.     }
  43. }
Add Comment
Please, Sign In to add comment