解题思路: 对每一步进行分解去解决,分为三个部分,每一步用 for 循环进行遍历
注意事项: 第二个 for 循环中用 pow()函数,pow( i , 2 )其意为 i 的 2 次方
第三个 for 循环中除法部分需要特别注意(C语言中 % 是对其取余,/ 是对其做除法)
用 float 型在 printf 中用 %f 表达;用 double 型在 printf 中用 %lf 表达
除法的结果是对其值取两位小数,%.2f 或 %.2lf
参考代码:
#include <stdio.h>
#include <math.h>
int main()
{
int a,b,c;
float sa = 0, sb = 0, sc = 0;
scanf("%d %d %d", &a, &b, &c );
for ( int i = 1; i <= a; i++ ) {
sa += i;
}
for ( int j = 1; j <= b; j++ ) {
sb += pow(j,2);
}
for ( int k = 1; k <= c; k++ ) {
sc += 1.0/k;
}
printf("%.2f", sa + sb + sc );
return 0;
}
0.0分
1 人评分