Home > Back-end >  C cycle
C cycle

Time:11-02

The factorial of 1, how to do, need to use for language as far as possible concise,

CodePudding user response:

Who is the subject?

CodePudding user response:

{int fun (int num)
Int iResult=1;
For (int I=1; I & lt; Num=; I++)
IResult *=I;
Return iResult;
}
  • Related