解题思路:
注意事项:
参考代码:
#include<stdio.h>
long f1(int a)
{
long y;
y=(long)a*a;
return y;
}
long f2(int b)
{
long x;
x=(long)b*b*b;
return x;
}
int main()
{
int i,t,p,a,b;
long s1=0,s2=0;
while(scanf("%d %d",&a,&b)!=EOF)
{
if(a>=b)
{t=b,p=a;}
else
{t=a,p=b;}
for(i=t;i<=p;i++)
{
if(i%2==0)
s1+=f1(i);
else
s2+=f2(i);
}
printf("%ld %ld\n",s1,s2);
s1=0;
s2=0;
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:644 |
字符串对比 (C语言代码)浏览:1471 |
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:637 |
【绝对值排序】 (C语言代码)浏览:892 |
K-进制数 (C语言描述,蓝桥杯)浏览:955 |
矩阵乘方 (C语言代码)浏览:1079 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:721 |
1050题解(结构体数组与结构体指针的使用)浏览:1216 |
C语言训练-亲密数 (C语言描述,反正怎么都能对)浏览:2256 |
C语言程序设计教程(第三版)课后习题10.1 (C语言代码)浏览:571 |