数学秒男
数学秒男
全部文章
分类
归档
标签
去牛客网
登录
/
注册
数学秒男的博客
全部文章
(共2篇)
题解 | #计算一个数的阶乘#(又臭又长版)
#include <iostream> using namespace std; int main() { int n; cin >> n; long long factorial = 1; // write your c...
2024-05-24
0
125
题解 | #求 1 - n 之间偶数的和#(又臭又长版)
#include <iostream> using namespace std; int main() { int n; cin >> n; int sum = 0; // write your code here.......
2024-05-24
0
150