ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Common Board

c++ compilation error, very strange,
Posted by tjq(killer of zju) 10 Sep 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
Posted by tjq(killer of zju) 11 Sep 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?