| Problem | gotoschool | 
|---|---|
| User | Anonymous35V | 
| Submission Time | 2023-11-08 11:43:09 | 
| Score | 0 | 
| Max Time | N/A | 
| Max Memory | N/A | 
Owl Get a Life
 gotoschool.cpp: In function ‘int32_t main()’:
gotoschool.cpp:7:10: error: expected ‘;’ before ‘for’
    7 |  cin >> n
      |          ^
      |          ;
    8 |   for (int i = 0; i < n; i++) {
      |   ~~~     
gotoschool.cpp:8:19: error: ‘i’ was not declared in this scope
    8 |   for (int i = 0; i < n; i++) {
      |                   ^
gotoschool.cpp:12:13: error: ‘arr’ was not declared in this scope
   12 |     cout << arr[i] << " "; // outputs: 1 3 5 7
      |             ^~~