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

Общий форум

c++ compilation error, very strange,
Послано tjq(killer of zju) 10 сен 2001 18:39
look at my simple solution to 1000:
#include <iostream>

using namespace std;
int main()
{
int a,b;
cin>>a>>b;
cout<<a+b<<endl;
return 0;
}

but it got compilation error as follows:
You tried to solve problem 1000. Your solution on C++ was
compiled with the following errors:

60374
e:\judge\include\streambuf(9) : fatal error C1083: Cannot
open include file: 'xlocnum': No such file or directory

what does it mean? how to change it?
please help us, Marat Bakirov
Послано tjq(killer of zju) 11 сен 2001 10:49
> look at my simple solution to 1000:
> #include <iostream>
>
> using namespace std;
> int main()
> {
> int a,b;
> cin>>a>>b;
> cout<<a+b<<endl;
> return 0;
> }
>
> but it got compilation error as follows:
> You tried to solve problem 1000. Your solution on C++ was
> compiled with the following errors:
>
> 60374
> e:\judge\include\streambuf(9) : fatal error C1083: Cannot
> open include file: 'xlocnum': No such file or directory
>
> what does it mean? how to change it?