0_0_29222695_294.cpp: In function 'int createPrimeTable()':
0_0_29222695_294.cpp:17:2: error: 'nbsp' was not declared in this scope
int size = 0;
^
0_0_29222695_294.cpp:42:41: error: 'i' was not declared in this scope
if (is_prime[i])
^
0_0_29222695_294.cpp:43:59: error: 'i' was not declared in this scope
primes[size++] = i;
^
0_0_29222695_294.cpp: In function 'int main()':
0_0_29222695_294.cpp:52:2: error: 'nbsp' was not declared in this scope
int count;
^
0_0_29222695_294.cpp:78:53: error: 'i' was not declared in this scope
if (primes[i] >= a && primes[i + 1] >= b)
^
0_0_29222695_294.cpp:81:68: error: 'i' was not declared in this scope
if ((primes[i] - a) == (primes[i + 1] - b))
^
0_0_29222695_294.cpp:84:85: error: 'i' was not declared in this scope
prime = primes[i] - a;
^
0_0_29222695_294.cpp:85:70: error: break statement not within loop or switch
break;
^
|