Spocoman

06. Oscars

Nov 19th, 2021 (edited)
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.00 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Oscars
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string name = Console.ReadLine();
  10.             double points = double.Parse(Console.ReadLine());
  11.             int juryNum = int.Parse(Console.ReadLine());
  12.            
  13.             for (int i = 0; i < juryNum; i++)
  14.             {
  15.                 string juryName = Console.ReadLine();
  16.                 double currentPoint = double.Parse(Console.ReadLine());
  17.  
  18.                 points += juryName.Length * currentPoint / 2;
  19.  
  20.                 if (points > 1250.5)
  21.                 {
  22.                     break;
  23.                 }
  24.             }
  25.              
  26.             if (points > 1250.5)
  27.             {
  28.                 Console.WriteLine($"Congratulations, {name} got a nominee for leading role with {points:f1}!");
  29.             }
  30.             else
  31.             {
  32.                 Console.WriteLine($"Sorry, {name} you need {1250.5 - points:f1} more!");
  33.             }
  34.         }
  35.     }
  36. }
  37.  
Add Comment
Please, Sign In to add comment