码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2019-10-13 11:07:19      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:std   font   c++   bsp   style   count   0基础   哥德巴赫猜想   nbsp   

#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;
}

}

}

}

}











 

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

标签:std   font   c++   bsp   style   count   0基础   哥德巴赫猜想   nbsp   

原文地址:https://www.cnblogs.com/Codenewbie1/p/11665121.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!