1242: 矩阵转置 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1000;ll a…… 题解列表 2024年06月09日 0 点赞 0 评论 241 浏览 评分:0.0
题解 1242: 矩阵转置 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N=1e3+5;int a[N][N];int main(){…… 题解列表 2024年06月09日 0 点赞 0 评论 165 浏览 评分:0.0
2877: 同行列对角线的格子 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1000;ll a…… 题解列表 2024年06月09日 0 点赞 0 评论 203 浏览 评分:10.0
题解 2877: 同行列对角线的格子 摘要:```cpp #include using namespace std; typedef long long ll; const int N=1e3; ll a[N][N]; int m…… 题解列表 2024年06月09日 0 点赞 0 评论 174 浏览 评分:9.9
题解 2877: 同行列对角线的格子 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N=1e3+5; //此行可以删去int main(){ …… 题解列表 2024年06月09日 0 点赞 0 评论 141 浏览 评分:0.0
此题仅供参考,(也可以抄) 摘要:解题思路:无注意事项:无,就是有点nan.参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int…… 题解列表 2024年06月09日 0 点赞 0 评论 191 浏览 评分:9.9
1111Cylinder(数学与语文的结合) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#define PI 3.141592653589793//这道题考的是语文阅读理解吧?//首…… 题解列表 2024年06月08日 0 点赞 0 评论 196 浏览 评分:0.0
1109Hanoi双塔问题(利用一维数组存储结果) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ long long n; cin >> n; //设计一个数组,将一个…… 题解列表 2024年06月08日 0 点赞 0 评论 237 浏览 评分:0.0
2847-找第一个只出现一次的字符-数组解法 摘要:注意事项: 找到只出现一次的字符,输出第一次出现的字符。 注意题目条件:用字符型数组储存输入的小写字母,用整形数组储存26个字母的出现次数输出第一次出现的字母 ```cpp #in…… 题解列表 2024年06月08日 0 点赞 0 评论 532 浏览 评分:9.9
1029: [编程入门]自定义函数处理素数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll prime(ll x){ f…… 题解列表 2024年06月08日 0 点赞 1 评论 195 浏览 评分:9.9