ENG  RUSTimus Online Judge
Online Judge
Задачи
Авторы
Соревнования
О системе
Часто задаваемые вопросы
Новости сайта
Форум
Ссылки
Архив задач
Отправить на проверку
Состояние проверки
Руководство
Регистрация
Исправить данные
Рейтинг авторов
Текущее соревнование
Расписание
Прошедшие соревнования
Правила
вернуться в форум

Обсуждение задачи 1001. Обратный корень

So, where the input stream ends ?
Послано Black^n^White 6 янв 2007 20:04
As I understand the user can use new line to seperate the numbers, but how can we know which "Enter" is the last one (or the input stream ends) ?
Re: So, where the input stream ends ?
Послано Roma Labish[Lviv NU] 6 янв 2007 20:23
See FAQ.
Re: So, where the input stream ends ?
Послано Black^n^White 6 янв 2007 21:19
Thanks.
Any examples for C# ?
Re: So, where the input stream ends ?
Послано Roma Labish[Lviv NU] 6 янв 2007 22:21
Ask Vladimir Yakovlev...
Re: So, where the input stream ends ?
Послано Squid 7 янв 2007 03:13
And example for Java, plz
Re: So, where the input stream ends ?
Послано Vladimir Yakovlev (USU) 7 янв 2007 07:43
Read with Console.Read() char by char. When the end of input stream was reached method returns -1.
Re: So, where the input stream ends ?
Послано C# LvivNU 7 янв 2007 16:16
Also, you can use
Console.In.ReadToEnd();
Re: So, where the input stream ends ?
Послано Squid 9 янв 2007 01:57
Vladimir Yakovlev (USU) писал(a) 7 января 2007 07:43
Read with Console.Read() char by char. When the end of input stream was reached method returns -1.
Will Reader.read() in Java have the same effect?
Re: So, where the input stream ends ?
Послано Slam [Tartu U] 9 янв 2007 02:33
Java :

while((line = f.readLine()) != null)
{
...
}
Re: So, where the input stream ends ?
Послано Frank Rodriguez 2 янв 2008 01:11
?? I tried that and it didnt work... the program never stops... Does anybody know how to stop the infinite loop?