Problem | sumint |
---|---|
User | hackerman123 |
Submission Time | 2023-01-27 14:05:05 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
sumint.cpp: In function ‘int main()’:
sumint.cpp:6:2: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
6 | cin >> i;
| ^~~
| std::cin
In file included from sumint.cpp:2:
/usr/include/c++/9/iostream:60:18: note: ‘std::cin’ declared here
60 | extern istream cin; /// Linked to standard input
| ^~~
sumint.cpp:11:15: error: expected ‘;’ before ‘}’ token
11 | sum += input
| ^
| ;
12 | }
| ~
sumint.cpp:13:2: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
13 | cout << sum;
| ^~~~
| std::cout
In file included from sumint.cpp:2:
/usr/include/c++/9/iostream:61:18: note: ‘std::cout’ declared here
61 | extern ostream cout; /// Linked to standard output
| ^~~~