开始 2024-05-25 14:30:00

0525小测B班

结束 2024-05-25 15:20:00
Contest is over.
当前 2024-12-22 15:17:13

man

include <bits/stdc++.h>

using namespace std;

int main() {

int n;
long long result = 1;  

cin>>n;

for (int i=1;i<= n;i++) {
    result*=i;
}

cout<<result<<endl;

return 0;

}


hhdxxf_hhdxxf  •  6个月前

比赛已结束。