文章

35

粉丝

134

获赞

55

访问

24.6k

头像
n的阶乘 题解:long long
P1167 清华大学/西北工业大学2018机试
发布于2024年1月16日 23:11
阅读数 698

#include <bits/stdc++.h>
using namespace std;
int main(){
	int n;
	while(cin>>n){
		long long res=n;
		while(--n){
			res*=n;
		}
		cout<<res<<endl;
	}
	return 0;
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发