задача Дартс
https://pastebin.com/Nhqv6z2D
Здравейте нещо се увлякох и се збози всичко, помощ?
using System;
namespace ConsoleApp3
{
class Program
{
static void Main(string[] args)
{
string name = Console.ReadLine();
int startPoints = 301;
int goodShots = 0;
int badShots = 0;
while (startPoints != 0)
{
string shot = Console.ReadLine();
if (shot == "Retire")
{
Console.WriteLine($"{name} retired after {badShots} unsuccessful shots.");
}
int points = int.Parse(Console.ReadLine());
if (shot == "Single")
{
if (points <= startPoints && startPoints > 0)
{
startPoints -= points;
goodShots++;
}
else
{
badShots++;
}
}
if (shot == "Double")
{
if (points <= startPoints && startPoints > 0)
{
startPoints -= points;
goodShots++;
}
else
{
badShots++;
}
}
if (shot == "Triple")
{
if (points <= startPoints && startPoints > 0)
{
startPoints -= points;
goodShots++;
}
else
{
badShots++;
}
}
if (startPoints == 0)
{
Console.WriteLine($"{name} won the leg with {goodShots} shots.");
break;
}
}
}
}
}
Благодаря! След работа седнах да пиша мързелашката и копи пейста не прощава, brake, го бях пропуснал, поне логиката е ок