OLD BOOKS - While Loop Exercise
Здравейте,
Задачата е old books от while loop exercise.
Това е моето решение - дава ми 88 точки, но като гледам единия вариант, в който не се намира книгата, изобщо не работи.. Моля за помощ!
using System;
namespace WhileLoop
{
class Program
{
static void Main(string[] args)
{
string book = Console.ReadLine();
int allBooks = int.Parse(Console.ReadLine());
int counter = 0;
bool isFound = false;
string nextBook = Console.ReadLine();
while (counter < allBooks)
{
nextBook = Console.ReadLine();
if (nextBook == book)
{
isFound = true;
counter++;
break;
}
counter++;
isFound = false;
}
if (isFound == true)
{
Console.WriteLine($"You checked {counter} books and found it.");
}
else
{
Console.WriteLine("The book you search is not here!");
Console.WriteLine($"You checked {counter} books.");
}
}
}
}
Много благодаря на всички! Това ми беше първата задача с while, но вече почнах да го схващам:)