明明的随机数-一个萝卜一个坑 摘要:#include #include int main() { int N = 0 , m = 0 , num = 0 , k = 0 ; int arr[1001] = …… 题解列表 2023年07月18日 0 点赞 0 评论 306 浏览 评分:0.0
2886: 图像旋转 简单c++ 摘要:解题思路:无注意事项:无参考代码:#include <bits/stdc++.h> int a[100][100]; int b[100][100]; using namespace std; …… 题解列表 2023年07月18日 0 点赞 0 评论 240 浏览 评分:9.9
2880: 计算鞍点简单c++ 摘要:解题思路:无注意事项:无参考代码:#include <bits/stdc++.h> int a[100][100]; using namespace std; int main() { …… 题解列表 2023年07月18日 0 点赞 0 评论 692 浏览 评分:9.9
Sn的公式求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int w,s,sn,i; scanf("%d",&i); i…… 题解列表 2023年07月18日 0 点赞 0 评论 297 浏览 评分:0.0
阶乘求和(递归) 摘要:看到有个评论用了递归,索性帮他补一下 ```c #include long long fun(int n) { if(n==1) { return 1; } else if(n==…… 题解列表 2023年07月18日 0 点赞 0 评论 366 浏览 评分:0.0
与指定数字相同的数的个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[100];int main(){ int n,m,sum=0; …… 题解列表 2023年07月18日 0 点赞 0 评论 199 浏览 评分:0.0
向量点积计算 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int n,a[10000],b[10000],sum=0;int main(){…… 题解列表 2023年07月18日 0 点赞 0 评论 334 浏览 评分:9.9
2804: 与指定数字相同的数的个数 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int a,b;int c[1000000];int main(){ int sum=0; …… 题解列表 2023年07月18日 0 点赞 0 评论 325 浏览 评分:9.9
****************************************************************************字符逆序******************** 摘要:解题思路:注意事项:参考代码:// 题目 1093: 字符逆序#include <bits/stdc++.h>#include <bits/stdc++.h> using namespace std;…… 题解列表 2023年07月18日 0 点赞 0 评论 276 浏览 评分:0.0
2901: 查找特定的值 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int a,b,d;int c[1000000];int main(){ int sum=1; …… 题解列表 2023年07月18日 0 点赞 0 评论 382 浏览 评分:9.9