Problem | nprime |
---|---|
User | KL |
Submission Time | 2024-10-27 12:27:38 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
nprime.cpp: In function ‘int prime(long long int)’:
nprime.cpp:9:13: error: ‘is_prime’ was not declared in this scope; did you mean ‘isprime’?
9 | if (is_prime[i]) { // If i is prime
| ^~~~~~~~
| isprime
nprime.cpp:17:13: error: ‘is_prime’ was not declared in this scope; did you mean ‘isprime’?
17 | if (is_prime[i]) {
| ^~~~~~~~
| isprime
nprime.cpp: In function ‘int main()’:
nprime.cpp:38:21: error: ‘findNthPrime’ was not declared in this scope
38 | int nth_prime = findNthPrime(n);
| ^~~~~~~~~~~~