Problem | gotoschool |
---|---|
User | god |
Submission Time | 2025-06-18 13:40:12 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
gotoschool.cpp:17:10: error: missing terminating ' character
17 | return 0'
| ^
gotoschool.cpp: In function ‘int main()’:
gotoschool.cpp:13:2: error: ‘sort’ was not declared in this scope; did you mean ‘qsort’?
13 | sort(students.begin(), students.end())
| ^~~~
| qsort
gotoschool.cpp:14:14: error: ‘i’ was not declared in this scope
14 | for(int i=0;i<no_of_students;i++) {
| ^
gotoschool.cpp:17:10: error: expected ‘;’ before ‘}’ token
17 | return 0'
| ^
| ;
18 | }
| ~