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

Обсуждение задачи 1027. Снова D++

A tip for C++ users who got WA!Mind the spaces!
Послано cloudygooose 4 июл 2010 08:51
Mind the spaces!
If you use
cin >> s1
The spaces will be ingnored!
I use this to get AC
    while (cin)
    {
        c = '';
        c = cin.get();
        if (c != '\n')    s += c;
    }
hope I can help you.
Re: A tip for C++ users who got WA!Mind the spaces!
Послано Mehran.R 27 окт 2010 17:30
hi
write this statement while(getline(cin,s1)){...}
Re: A tip for C++ users who got WA!Mind the spaces!
Послано Fastholf 22 ноя 2010 09:45
You can also use
  cin >> noskipws;
After this spaces won't be ignored.

Edited by author 22.11.2010 09:46