| Problem | fizzbuzz |
|---|---|
| User | caslyn |
| Submission Time | 2026-06-22 16:24:25 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp:1:2: error: invalid preprocessing directive #inculde; did you mean #include?
1 | #inculde<iostream>
| ^~~~~~~
| include
fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:4:2: error: ‘intN’ was not declared in this scope; did you mean ‘int’?
4 | intN,A,B;
| ^~~~
| int
fizzbuzz.cpp:4:7: error: ‘A’ was not declared in this scope
4 | intN,A,B;
| ^
fizzbuzz.cpp:4:9: error: ‘B’ was not declared in this scope
4 | intN,A,B;
| ^
fizzbuzz.cpp:5:2: error: ‘cin’ was not declared in this scope
5 | cin>>N>>A>>B;
| ^~~
fizzbuzz.cpp:1:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | #inculde<iostream>
fizzbuzz.cpp:5:7: error: ‘N’ was not declared in this scope
5 | cin>>N>>A>>B;