0
Аукцион с макс. ставкой?
Застрял на таком вопросе. Надо дописать цикл. { int maxBid = Convert.ToInt32(Console.ReadLine()); //введите код сюда while(true) { if () break; Console.WriteLine(maxBid);
2 Answers
+ 3
int maxBid = Convert.ToInt32(Console.ReadLine());
while (true)
{
int bid = Convert.ToInt32(Console.ReadLine());
if(bid > maxBid)
{
maxBid = bid;
break;
}
}
Console.WriteLine(maxBid);
+ 1
Решенние например как здесь:
https://code.sololearn.com/cD3N3aL3m1jF/?ref=app