函数题:8 int Factorial( const int N) { if(N>=0) { int result=1,i; for(i=1;i<=N;i++) { result=result*i; } return result; } else return 0; }