Къде е проблемът ?Old Books
Здравейте колеги,постоянно ми изписва рънтайм ерор ,а входовете работят ,може ли малко помощ къде е проблемът ?
using System;
namespace OldBooks
{
class Program
{
static void Main(string[] args)
{
string searchedBook = Console.ReadLine();
int countBooks = int.Parse(Console.ReadLine());
int countCheckBooks = 0;
while (countBooks > 0)
{
string title = Console.ReadLine();
if (title == searchedBook)
{
Console.WriteLine($"You checked {countCheckBooks} books and found it.");
break;
}
else
{
countCheckBooks++;
countBooks--;
}
}
if (countBooks == 0)
{
Console.WriteLine("The book you search is not here!");
Console.WriteLine($"You checked {countCheckBooks} books.");
}
}
}
}
Благодаря ти .