Problem | maximum |
---|---|
User | smartsword |
Submission Time | 2025-02-17 16:08:09 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
maximum.cpp:3:20: error: expected ‘;’ before ‘int’
3 | using namespace std
| ^
| ;
4 |
5 | int; main(){
| ~~~
maximum.cpp:5:1: error: declaration does not declare anything [-fpermissive]
5 | int; main(){
| ^~~
maximum.cpp: In function ‘int main()’:
maximum.cpp:8:28: error: expected primary-expression before ‘>>’ token
8 | if (a > b) { std:cout; >> A; }
| ^~
maximum.cpp:8:31: error: ‘A’ was not declared in this scope
8 | if (a > b) { std:cout; >> A; }
| ^
maximum.cpp:10:18: error: duplicate label ‘std’
10 | if (b > a) { std:cout >>B; }
| ^~~
maximum.cpp:10:29: error: ‘B’ was not declared in this scope
10 | if (b > a) { std:cout >>B; }
|