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

1157哥德巴赫猜想

时间:2017-12-03 18:59:08      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:for   als   stream   amp   pac   false   col   names   iss   

 1 #include<iostream>
 2 using namespace std;
 3 bool iss(int x)
 4 {
 5     for(int i=2;i*i<=x;i++)
 6     {
 7         if(x%i==0)return false;
 8     }
 9     return true;
10 }
11 int main()
12 {
13     for(int i=6;i<=100;i=i+2)
14     {
15         for(int j=2;j<100;j++)
16         if(iss(j)&&iss(i-j))
17         {
18             cout<<i<<"="<<j<<"+"<<i-j<<endl;
19             break;
20         }
21         
22     }
23     
24     return 0;
25 }

穷举

1157哥德巴赫猜想

标签:for   als   stream   amp   pac   false   col   names   iss   

原文地址:http://www.cnblogs.com/tflsnoi/p/7966688.html

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