哪错了@root

lhy276 2025-08-02 14:23:56 2

#include <bits/stdc++.h>

using namespace std;

int main() { int i, n, s = 1; cin >> n; for (i = 1; i <= n; i++) { s = s / i; } cout << s; }

{{ vote && vote.total.up }}