Advertisement
Spocoman

Darts Tournament

Oct 6th, 2023
942
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.30 KB | None | 0 0
  1. using System;
  2.  
  3. namespace DartsTournament
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int startPoints = int.Parse(Console.ReadLine());
  10.             int moves = 0;
  11.  
  12.             while (startPoints > 0)
  13.             {
  14.                 string command = Console.ReadLine();
  15.                 moves++;
  16.  
  17.                 if (command == "bullseye")
  18.                 {
  19.                     break;
  20.                 }
  21.  
  22.                 int points = int.Parse(Console.ReadLine());
  23.  
  24.                 if (command == "double ring")
  25.                 {
  26.                     points *= 2;
  27.                 }
  28.                 else if (command == "triple ring")
  29.                 {
  30.                     points *= 3;
  31.                 }
  32.  
  33.                 startPoints -= points;
  34.             }
  35.  
  36.             if (startPoints == 0)
  37.             {
  38.                 Console.WriteLine($"Congratulations! You won the game in {moves} moves!");
  39.             }
  40.             else if (startPoints < 0)
  41.             {
  42.                 Console.WriteLine($"Sorry, you lost. Score difference: {Math.Abs(startPoints)}.");
  43.             }
  44.             else
  45.             {
  46.                 Console.WriteLine($"Congratulations! You won the game with a bullseye in {moves} moves!");
  47.             }
  48.         }
  49.     }
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement