Start 2024-08-20 08:00:00

8.19-8.24集训第二天

End 2024-08-25 00:00:00
Contest is over.
Now 2026-04-30 20:08:24

E题解(记得换行和检查源代码)

include<bits/stdc++.h>

using namespace std; int main() {

long long n,s=1,m; cin>>n; m=n; while(n>0) {

s=s*n;
n--;

} cout<<m<<"!="<<s; return 0; }


LIUYC  •  1年前

The contest has ended.