| Problem | nprime |
|---|---|
| User | ChristianXander |
| Submission Time | 2026-06-24 14:45:46 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
nprime.cpp:1:1: error: ‘include’ does not name a type
1 | include <bits/stdc++.h>
| ^~~~~~~
nprime.cpp: In function ‘int main()’:
nprime.cpp:5:5: error: ‘ifstream’ was not declared in this scope
5 | ifstream in("PRIME.IN");
| ^~~~~~~~
nprime.cpp:6:5: error: ‘ofstream’ was not declared in this scope
6 | ofstream out("PRIME.OUT");
| ^~~~~~~~
nprime.cpp:8:5: error: ‘in’ was not declared in this scope; did you mean ‘n’?
8 | in >> n;
| ^~
| n
nprime.cpp:19:5: error: ‘out’ was not declared in this scope
19 | out << p;
| ^~~