Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u
Description
给定一段连续的整数,求出他们中所有偶数的平方和以及所有奇数的立方和。
Input
输入数据包含多组测试实例,每组测试实例包含一行,由两个整数m和n组成。
Output
对于每组输入数据,输出一行,应包括两个整数x和y,分别表示该段连续的整数中所有偶数的平方和以及所有奇数的立方和。 你可以认为32位整数足以保存结果。
Sample Input
1 3
2 5
Sample Output
4 28
20 152
#include<stdio.h>
int main()
{
long n,m,t;
while(scanf("%ld %ld",&n,&m)!=EOF)
{
if(n>m)
{
t=n;
n=m;
m=t;
}
long i;
long x=;
long y=;
for(i=n;i<=m;i++)
{
if(i%==)
x+=i*i;
else
y+=i*i*i;
}
printf("%ld %ld\n",x,y);
}
return ;
}