Problem | exam |
---|---|
User | Smashing |
Submission Time | 2025-01-20 17:07:17 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
exam.cpp: In function ‘int main()’:
exam.cpp:5:28: error: expected ‘;’ before ‘}’ token
5 | std::cout << "Hello World"
| ^
| ;
6 | }
| ~
exam.cpp:8:14: error: ‘a’ was not declared in this scope
8 | std::cin >> a, >> b;
| ^
exam.cpp:8:17: error: expected primary-expression before ‘>>’ token
8 | std::cin >> a, >> b;
| ^~
exam.cpp:8:20: error: ‘b’ was not declared in this scope
8 | std::cin >> a, >> b;
| ^
exam.cpp:9:9: error: expected primary-expression before ‘cout’
9 | std cout << a * b;
| ^~~~