摘要: T1 一道模拟题 高精度算阶乘 #include <bits/stdc++.h> using namespace std; void f(int n){ if(n == 1){ cout << "1"; } else { int a[100000]; int e = 0, s = 0, p = 0; 阅读全文
posted @ 2020-02-27 22:12 LightAc 阅读(208) 评论(0) 推荐(0)
返回顶端