Problem | fizzbuzz |
---|---|
User | Keevan19 |
Submission Time | 2023-01-08 16:44:30 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp:6:1: error: ‘cout’ does not name a type
6 | cout << f0 << endl;
| ^~~~
fizzbuzz.cpp:7:1: error: ‘cout’ does not name a type
7 | cout << f1 << endl;
| ^~~~
fizzbuzz.cpp:10:1: error: expected unqualified-id before ‘for’
10 | for (int i = 2; i <= n; i++) {
| ^~~
fizzbuzz.cpp:10:17: error: ‘i’ does not name a type
10 | for (int i = 2; i <= n; i++) {
| ^
fizzbuzz.cpp:10:25: error: ‘i’ does not name a type
10 | for (int i = 2; i <= n; i++) {
| ^
fizzbuzz.cpp:17:1: error: expected unqualified-id before ‘return’
17 | return 0;
| ^~~~~~