首页 > 学院 > 开发设计 > 正文

hdu 2007 平方和与立方和

2019-11-10 19:54:00
字体:
来源:转载
供稿:网友
平方和与立方和

Time Limit: 2000/1000 MS (java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 164087 Accepted Submission(s): 52042

PRoblem Description

给定一段连续的整数,求出他们中所有偶数的平方和以及所有奇数的立方和。

Input

输入数据包含多组测试实例,每组测试实例包含一行,由两个整数m和n组成。

Output

对于每组输入数据,输出一行,应包括两个整数x和y,分别表示该段连续的整数中所有偶数的平方和以及所有奇数的立方和。 你可以认为32位整数足以保存结果。

Sample Input

1 3 2 5

Sample Output

4 28 20 152

#include <stdio.h>#include <stdlib.h>/* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { unsigned m,n,ou,ji,i; while(scanf("%u%u",&m,&n)!=EOF) { ou=ji=0; if(m>n) { i=m; m=n; n=i; } for(;m<=n;m++) { if(m%2==0) { ou=ou+m*m; } else { ji=ji+m*m*m; } } printf("%u %u/n",ou,ji); } return 0;}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表