首页 > 其他 > 详细

1-5阶乘

时间:2016-12-27 09:34:29      阅读:155      评论:0      收藏:0      [点我收藏+]
#include "stdafx.h"

int main()
{
int temp=5;
int temp2=1;
int temp3;
int temp4=0;

for(int i=1;i<=5;i++)
{
temp3 = temp2;
temp2 = temp2*(i+1);
printf("%d*%d=%d\n",temp3,i+1,temp2);
temp4+=temp2;
}
printf("%d\n",temp4);
return 0;
}

  

1-5阶乘

原文:http://www.cnblogs.com/YuzurihaInori/p/6224521.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!