Namespace задание_5
{
internal class Program
{
static void Main()
{
double max=0,userInput;
int i=0,nomer=0;
Console.InputEncoding = Encoding.UTF8;
Console.OutputEncoding = Encoding.UTF8;
Console.WriteLine("Введите числа: ");
while (true)
{
userInput = Convert.ToDouble(Console.ReadLine());
i++;
if (userInput == 0)
{
Console.WriteLine($"Самое большое число {max}, его порядковый номер {nomer}");
break;
}
else if (userInput > max)
{
max = userInput;
nomer = i;
}
else
{
Console.WriteLine("Введите нормальное число: ");
}
}
}
}
}
Не могу понять почему при вводе неверного числа, или даже числа с плавающей точкой происходит выход из программы