紫啧~

AOKO酱  •  5个月前


include <bits/stdc++.h>

using namespace std;

int main() {

int a = 1, s = 1, n, i;
scanf("%d", &n);
while (a <= n) {
	s = s * a;
	a++;
}
printf("%d", s);
return 0;

}


评论:

请先登录,才能进行评论