首页 > 其他 > 详细

2014上海网络赛 HDU 5053 the Sum of Cube

时间:2015-10-25 00:45:45      阅读:278      评论:0      收藏:0      [点我收藏+]

技术分享
 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 #include<math.h>
 4 #include<iostream>
 5 #define LL long long
 6 using namespace std;
 7 
 8 int main()
 9 {
10     int t;
11     int a,b;
12     int cas;
13     LL sum;
14     while(~scanf("%d",&t))
15     {
16         for(int i=1;i<=t;i++)
17         {
18             sum=0;
19             scanf("%d%d",&a,&b);
20             for(int j=a;j<=b;j++)
21             {
22                 sum+=pow(j,3);
23             }
24             printf("Case #%d: %lld\n",i,sum);
25         }
26     }
27     return 0;
28 }
View Code

 

2014上海网络赛 HDU 5053 the Sum of Cube

原文:http://www.cnblogs.com/ITUPC/p/4908013.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!