求1!+3!+5!+...+100!=编写一段c程序

[复制链接]
查看11 | 回复2 | 2012-12-27 20:50:01 | 显示全部楼层 |阅读模式
#include int main(){ int i=0;long temp=1;long sum=0;for(i=1;i<=n;i+=2){temp*=i;sum+=temp;}printf("sum=%ld\n",sum);return 0;}...
回复

使用道具 举报

千问 | 2012-12-27 20:50:01 | 显示全部楼层
100!很大的。。。。要double才勉强够装。。。 int main(){
double sum=0,temp=1,i=1;
for(i=1;i<=100;i++)
{
temp*=i;
sum+=temp;
}
printf("sum of 1!+2!....
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行