PTA基礎6-8簡單階乘計算

Buffoon_發表於2020-11-02

在這裡插入圖片描述
在這裡插入圖片描述
在這裡插入圖片描述
注意:0的階乘是1

int Factorial( const int N )
{
	if(N<0){
		return 0;
	}
	else{
		int d=1;
		for(int i=1;i<=N;i++){
			d*=i;
		}
		return d;
	}
}

相關文章