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

Обсуждение задачи 1601. АнтиКАПС

How to read this data using C#
Послано yahiatnt 30 окт 2008 20:14
I have no idea how to read this input data, because i don't know when to stop reading...any help please.
Re: How to read this data using C#
Послано SKYDOS [Vladimir SU] 11 июл 2010 20:50
string line;
while((line = Console.ReadLine())!=null){
   //...code here...
}
Re: How to read this data using C#
Послано VNXtreMe 27 дек 2011 11:03
A simple approach is using-
String input = Console.In.ReadToEnd(); //Press Ctrl+Z and hit enter to mark the end of input

Refer to http://acm.timus.ru/help.aspx?topic=csharp