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

Обсуждение задачи 1000. A+B Problem

how to correct this error
Послано ANIKET VISHAL 6 июн 2017 12:48
8m3edk-w4h74s:1:9: fatal error: 'iostream.h' file not found
#include<iostream.h>
        ^
1 error generated.
Re: how to correct this error
Послано Mahilewets 7 июн 2017 00:54
#include <iostream>

Also better use not iostream,  but rather STDIO.
Re: how to correct this error
Послано ToadMonster 7 июн 2017 14:37
Just because?

My opinion:
C++ streams and C printf/scanf are equal.
For GCC compiler, "std::ios::sync_with_stdio(false);" method call is required at main() very beginning.

Significant input speed-up can be reached by using "getchar()" and/or "read()" functions and manual string->int conversion. This way is tricky, dangerous, I haven't seen task requires it.

Edited by author 07.06.2017 14:49