0_0_29222717_3606.cpp: In function 'int createPrimeTable()':
0_0_29222717_3606.cpp:16:2: error: 'nbsp' was not declared in this scope
int size = 0;
^
0_0_29222717_3606.cpp:30:41: error: 'i' was not declared in this scope
if (is_prime[i])
^
0_0_29222717_3606.cpp:31:59: error: 'i' was not declared in this scope
primes[size++] = i;
^
0_0_29222717_3606.cpp: In function 'int main()':
0_0_29222717_3606.cpp:40:2: error: 'nbsp' was not declared in this scope
int count;
^
0_0_29222717_3606.cpp:64:53: error: 'i' was not declared in this scope
if (primes[i] >= a && primes[i + 1] >= b)
^
0_0_29222717_3606.cpp:67:68: error: 'i' was not declared in this scope
if ((primes[i] - a) == (primes[i + 1] - b))
^
0_0_29222717_3606.cpp:70:85: error: 'i' was not declared in this scope
prime = primes[i] - a;
^
0_0_29222717_3606.cpp:71:70: error: break statement not within loop or switch
break;
^
|