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

hdu2010

时间:2015-05-11 19:40:03      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:

//很闲,刷水。。。。。

http://acm.hdu.edu.cn/showproblem.php?pid=2010

 1 #include<iostream>
 2 #include<stdio.h>
 3 #include<math.h>
 4 #include<stdlib.h>
 5 #include<string.h>
 6 using namespace std;
 7 
 8 int main()
 9 {
10     int n,m;
11     while(~scanf("%d%d",&n,&m))
12     {
13         int t;
14         if(n>m)
15         {
16             t=n;
17             n=m;
18             m=t;
19         }
20         int flag=0;
21         for(int i=n;i<=m;i++)
22         {
23             int a=i/100;
24             int b=i%10;
25             int c=i/10%10;
26             if(i==a*a*a+b*b*b+c*c*c)
27             {
28                 if(flag==0)
29                 {
30                     printf("%d",i);
31                     flag=1;
32                 }
33                 else
34                 {
35                     printf(" %d",i);
36                 }
37             }
38         }
39         if(flag==0)
40         printf("no");
41         printf("\n");
42     }
43     return 0;
44 }

 

hdu2010

标签:

原文地址:http://www.cnblogs.com/xuesen1995/p/4495195.html

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