码迷,mamicode.com
首页 > 其他好文 > 详细

1-5阶乘

时间:2016-12-27 09:37:28      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:ret   csharp   return   i+1   sha   class   printf   ++   i++   

#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阶乘

标签:ret   csharp   return   i+1   sha   class   printf   ++   i++   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!