验证哥德巴赫猜想:任何一个大于6的偶数均可表示为2个素数之和。
验证哥德巴赫猜想:任何一个大于6的偶数均可表示为2个素数之和。
日期:2012-04-26 16:35:20 人气:1
哥德巴赫猜想,请输入一个数n:
88
猜想:88=5+83
猜想:88=17+71
猜想:88=29+59
猜想:88=41+47
猜想:88=47+41
猜想:88=59+29
猜想:88=71+17
猜想:88=83+5
请按任意键继续. . .
#include "stdio.h"
#include "stdlib.h"
int isPrimeNumber(int n)
{
int i;
for(i=2;