Problem description, Inputs and Outputs:
Well in this problem you need only 3 things:
1) if the amount of prime numbers in that range is even or odd
2)if C is bigger than half N
3)a list with all the primes you need
the only “tricky” part here would be:
lets call “x” the center of the primes that are going to be printed.
if the amount of primes is even then, starting at (x – C ) you print c*2 numbers
if the amount of primes is odd then, starting at (x – C – 1) you print (c*2) – 1 numbers
and also you need to remember that if the value of C is bigger than the half of the amount of primes you print all of them.
