Advertisement
Spocoman

Name Game

Nov 24th, 2021 (edited)
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.01 KB | None | 0 0
  1. using System;
  2.  
  3. namespace NameGame
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string name = Console.ReadLine();
  10.             string winner = "";
  11.             int points = 0;
  12.  
  13.             while (name != "Stop")
  14.             {
  15.                 int sum = 0;
  16.                 for (int i = 0; i < name.Length; i++)
  17.                 {
  18.                     int num = int.Parse(Console.ReadLine());
  19.                     int z = name[i];
  20.  
  21.                     if (num == z)
  22.                     {
  23.                         sum += 10;
  24.                     }
  25.                     else
  26.                     {
  27.                         sum += 2;
  28.                     }
  29.                 }
  30.  
  31.                 if (sum >= points)
  32.                 {
  33.                     winner = name;
  34.                     points = sum;
  35.                 }
  36.  
  37.                 name = Console.ReadLine();
  38.             }
  39.             Console.WriteLine($"The winner is {winner} with {points} points!");
  40.         }
  41.     }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement