| Problem | psle |
|---|---|
| User | CHONG |
| Submission Time | 2025-01-04 10:45:01 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
psle.cpp: In function ‘int main()’:
psle.cpp:5:9: error: expected primary-expression before ‘int’
5 | cin >> int score;
| ^~~
psle.cpp:6:6: error: ‘score’ was not declared in this scope
6 | if (score > 90) {
| ^~~~~
psle.cpp:9:8: error: ‘score’ was not declared in this scope
9 | elif (score >= 75) {
| ^~~~~
psle.cpp:9:2: error: ‘elif’ was not declared in this scope
9 | elif (score >= 75) {
| ^~~~
psle.cpp:24:2: error: ‘else’ without a previous ‘if’
24 | else {
| ^~~~
psle.cpp:25:14: error: expected ‘;’ before ‘}’ token
25 | cout << "U"
| ^
| ;
26 | }
| ~