题解列表

筛选

阶乘求和(递归)

摘要:看到有个评论用了递归,索性帮他补一下 ```c #include long long fun(int n) { if(n==1) { return 1; } else if(n==……

Sn的公式求和

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){    int w,s,sn,i;    scanf("%d",&i);    i……

2880: 计算鞍点简单c++

摘要:解题思路:无注意事项:无参考代码:#include <bits/stdc++.h>  int a[100][100]; using namespace std; int main() {  ……

2886: 图像旋转 简单c++

摘要:解题思路:无注意事项:无参考代码:#include <bits/stdc++.h> int a[100][100]; int b[100][100]; using namespace std; ……

母牛的故事(递归)

摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int arr[60]; int niu(int x){ if(arr[x]!……

计算宇宙无敌超级大数

摘要:解题思路:高精度乘法学过吧注意事项:数字特大,10000位数组储存参考代码:#includeusing namespace std; int main(){     int num[100000]……