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