Привіт. Допоможіть, будь-ласка, розібратись в чому моя помилка. Наче input виводить правильно, але перевірку мій код не проходить. Чому?
Here is my code:
namespace WhileLoop
{
class SalaryNegotiator
{
static void Main(string[] args)
{
int startSalary = 100;
bool check = true;
while (check)
{
Console.WriteLine($"I will give you {startSalary} dollars, ok?");
string answer = Console.ReadLine();
if ( answer == "more")
{
startSalary+=100;
}
if (answer == "ok")
{
check = false;
}
}
Console.WriteLine($"Your salary is {startSalary} dollars.");
}
}
}