与指定数字相同的数的个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[100];int main(){ int n,m,sum=0; …… 题解列表 2023年07月18日 0 点赞 0 评论 238 浏览 评分:0.0
阶乘求和(递归) 摘要:看到有个评论用了递归,索性帮他补一下 ```c #include long long fun(int n) { if(n==1) { return 1; } else if(n==…… 题解列表 2023年07月18日 0 点赞 0 评论 418 浏览 评分:0.0
Sn的公式求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int w,s,sn,i; scanf("%d",&i); i…… 题解列表 2023年07月18日 0 点赞 0 评论 372 浏览 评分:0.0
2880: 计算鞍点简单c++ 摘要:解题思路:无注意事项:无参考代码:#include <bits/stdc++.h> int a[100][100]; using namespace std; int main() { …… 题解列表 2023年07月18日 0 点赞 0 评论 821 浏览 评分:9.9
2886: 图像旋转 简单c++ 摘要:解题思路:无注意事项:无参考代码:#include <bits/stdc++.h> int a[100][100]; int b[100][100]; using namespace std; …… 题解列表 2023年07月18日 0 点赞 0 评论 312 浏览 评分:9.9
明明的随机数-一个萝卜一个坑 摘要:#include #include int main() { int N = 0 , m = 0 , num = 0 , k = 0 ; int arr[1001] = …… 题解列表 2023年07月18日 0 点赞 0 评论 364 浏览 评分:0.0
母牛的故事(递归) 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int arr[60]; int niu(int x){ if(arr[x]!…… 题解列表 2023年07月18日 0 点赞 0 评论 376 浏览 评分:0.0
C语言训练-计算1~N之间所有奇数之和 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int main(int argc, char** argv) { int n,a; cin>>n; …… 题解列表 2023年07月18日 0 点赞 0 评论 427 浏览 评分:0.0
请指正,提交后显示第一个答案不正确 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void f(char a[100]){ int x = 0, y = 0, z = 0, e = 0; for (int…… 题解列表 2023年07月17日 0 点赞 0 评论 327 浏览 评分:0.0
计算宇宙无敌超级大数 摘要:解题思路:高精度乘法学过吧注意事项:数字特大,10000位数组储存参考代码:#includeusing namespace std; int main(){ int num[100000]…… 题解列表 2023年07月17日 0 点赞 0 评论 448 浏览 评分:9.9