循环结构练习题
习题1
编写程序,计算并输出下面数列前15项中偶数项的和。
2*3,4*5,……,2n*(2n+1),……
//编写程序,计算并输出下面数列前15项中偶数项的和。
# include <stdio.h>
# include <stdlib.h>
# include <math.h>
int main()
{
int n, sum = 0, a;
for (n = 2; n <= 14; n += 2)
{
a = (2 * n) * (2 * n + 1);
sum = sum + a;
}
printf("%d\n", sum);
system("pause");
return 0;
}
习题2
编写程序,计算并输出下面数列前15项(x=0.5)的和(结果取3位小数输出)。
cos(x)/x,cos(2x)/2x,cos(3x)/3x, ……,cos(n*x)/(n*x)……