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

ProjectEuler 004题

时间:2014-05-24 09:26:42      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   c   code   java   

bubuko.com,布布扣
 1 #include<iostream>
 2 using namespace std;
 3 
 4 int main() {
 5     bool isPalindromic (int num);
 6     int res = 0;
 7 
 8     for(int i = 100; i < 1000 ; i++)
 9         for(int j = 100; j < 1000; j++) {
10             if( isPalindromic(i*j) && i*j > res)
11                 res = i*j;
12         }
13     cout << res;
14     system("pause");
15     return 0;
16 }
17 //判断回文
18 bool isPalindromic(int num) {
19     int rev_num = 0;
20     int m = num;//
21     while(m != 0) {
22         rev_num = rev_num * 10 + m%10;
23         m = m/10;
24     }
25     if( rev_num == num)
26         return true;
27     else
28         return false;
29 }
bubuko.com,布布扣

 

ProjectEuler 004题,布布扣,bubuko.com

ProjectEuler 004题

标签:style   class   blog   c   code   java   

原文地址:http://www.cnblogs.com/wanghui390/p/3749257.html

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