Problem | psle |
---|---|
User | breaded |
Submission Time | 2024-05-01 20:17:54 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
psle.cpp:12:7: error: expected unqualified-id before ‘else’
12 | } else if (score >= 75) {
| ^~~~
psle.cpp:14:7: error: expected unqualified-id before ‘else’
14 | } else if (score >= 60) {
| ^~~~
psle.cpp:16:7: error: expected unqualified-id before ‘else’
16 | } else if (score >= 50) {
| ^~~~
psle.cpp:18:7: error: expected unqualified-id before ‘else’
18 | } else if (score >= 35) {
| ^~~~
psle.cpp:20:7: error: expected unqualified-id before ‘else’
20 | } else if (score >= 20) {
| ^~~~
psle.cpp:22:7: error: expected unqualified-id before ‘else’
22 | } else if (score >= 0) {
| ^~~~
psle.cpp:24:7: error: expected unqualified-id before ‘else’
24 | } else {
| ^~~~
psle.cpp:30:10: error: ‘cout’ in namespace ‘std’ does not name a type
30 | std::cout << grade <<