| Problem | psle |
|---|---|
| User | Froakyu |
| Submission Time | 2026-07-01 09:26:47 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
psle.cpp: In function ‘int main()’:
psle.cpp:6:10: error: expected ‘;’ before ‘if’
6 | cin >> a
| ^
| ;
7 | if(a<90){
| ~~
psle.cpp:9:2: error: ‘else’ without a previous ‘if’
9 | else if(75<=a<=90){
| ^~~~
psle.cpp:10:13: error: expected ‘;’ before ‘}’ token
10 | cout << "A"};
| ^
| ;
psle.cpp:11:2: error: ‘else’ without a previous ‘if’
11 | else if(60<=a<=74){
| ^~~~
psle.cpp:12:13: error: expected ‘;’ before ‘}’ token
12 | cout << "B"};
| ^
| ;
psle.cpp:13:2: error: ‘else’ without a previous ‘if’
13 | else if(50<=a<=59){
| ^~~~
psle.cpp:14:16: error: expected ‘;’ before ‘}’ token
14 | cout << "C"};
| ^
| ;
psle.cpp:15:2: error: ‘else’ without a