当前位置 : 主页 > 编程语言 > c++ >

大一0基础小白用最基础C写哥德巴赫猜想

来源:互联网 收集:自由互联 发布时间:2021-06-23
#include stdio.h int main (){ int a,b,c,k,count1,count2; for(a=4;a=1200;a=a+2){ for(b=2;b=a/2;b++){ count1=0; for(c=2;c=b-1;c++){ if(b%c==0) count1++;} if(count1==0){ k=a-b; count2=0; for(c=2;c=k-1;c++){ if(k%c==0) count2++; } if(count2==0)

#include <stdio.h>
int main (){

int a,b,c,k,count1,count2;

for(a=4;a<=1200;a=a+2){

for(b=2;b<=a/2;b++){
count1=0;
for(c=2;c<=b-1;c++){
if(b%c==0)
count1++;}
if(count1==0){
k=a-b;
count2=0;
for(c=2;c<=k-1;c++){
if(k%c==0)
count2++;
}
if(count2==0){
printf("%d=%d+%d\n",a,b,k);
break;
}

}

}

}

}

网友评论