0
c program to check whether a number can be expressed as sum of two prime numbers
test case 1 input 35 output not test case 2 input 34=3+31 34=5+29 34=11+23 34=17+17 34
3 Réponses
+ 1
True. But it is believed (although not yet mathematically proven) that it is possible for every single even integer.
See https://en.m.wikipedia.org/wiki/Goldbach%27s_conjecture
0
not possible for most odd numbers as 2 is the only prime even number.
e.g
33 = 31+2
0
Thanks Bogdan. Interesting info.