1-5阶乘
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1-5阶乘相关的知识,希望对你有一定的参考价值。
#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阶乘的主要内容,如果未能解决你的问题,请参考以下文章