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

最小正整数

时间:2014-07-27 10:14:12      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:

有一个整数,除5余3、除3余2、除2余1,            求满足条件的最小正整数。

 

 

 

 

 

那么while(1)
其中1代表一个常量表达式,他永远不会等于0。
所以,循环会一直执行下去。
除非你设置break等类似的跳出循环语句循环 才会中止

 

#include <iostream>
using namespace std;
int main( )
{     int x=1;
      while(1)
      {

                 if(x%5==3 && x%3==2 && x%2==1 )
                                                                         {    x++;    break;}

}
       cout<<x<<endl;  
       system("pause"); 

return 1;
}

 

 

 

 

#include <iostream>
using namespace std;
int main( )
{     int x=1;
      while(1)
      {if(x%5==3 && x%3==2 && x%2==1 )
          { break;}
    x++;
    }
       cout<<x<<endl;  
       system("pause"); return 1;
}

 

bubuko.com,布布扣

 

 

 

 

 

bubuko.com,布布扣

最小正整数(续)    加速
#include <iostream>
using namespace std;
int main( )
{    

int x=3;
      while(1)
       { 
            if(x%3==2 && x%2==1)               break;
                                    x+=5;
        }
       cout<<x<<endl;
       system("pause");   

return 0;
}

最小正整数

标签:

原文地址:http://www.cnblogs.com/wc1903036673/p/3870559.html

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