Problem nostatement
User PlayVoltz
Submission Time 2023-08-22 21:26:59
Score 0
Max Time N/A
Max Memory N/A

Compile Error

nostatement.cpp: In function ‘void sieve(int)’:
nostatement.cpp:11:10: error: ‘ll’ was not declared in this scope
11 | for (ll i = 2; i <= n; ++i) {
| ^~
nostatement.cpp:11:20: error: ‘i’ was not declared in this scope
11 | for (ll i = 2; i <= n; ++i) {
| ^
nostatement.cpp:13:20: error: expected ‘;’ before ‘j’
13 | for (ll j = i * i; j <= n; j += i) {
| ^~
| ;
nostatement.cpp:13:32: error: ‘j’ was not declared in this scope
13 | for (ll j = i * i; j <= n; j += i) {
| ^