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

Обсуждение задачи 1094. Дисплей

Help for WA 1
Послано Oleg Strekalovsky [Vologda SPU] 24 апр 2009 19:28
Remember, that in input there are "end-of-line characters".
And you must read string lines until your find "end-of-file characters".
If Java
while (in.hasNextLine()) {
   char input[] = in.nextLine().toCharArray();
      /* analyse-code
      */
}
This method (while(in.hasNext***()) often use, when you don't know the number of input data or you can find "end-of-line characters" in text line.


Edited by author 30.04.2009 18:26
Re: Help for WA 1
Послано SubmitRush 28 сен 2009 14:15
and.....

"...Assume that at the beginning the e-screen contains 80 spaces..." (for TestCase#1)

"...The width of the screen is 80 symbols. When the cursor reaches left or right edge of the screen it is automatically placed at the first position to the left...."
(for TestCase#4)

Don't miss that!

Edited by author 28.09.2009 14:17