编写题解 2332: 信息学奥赛一本通T1181-整数奇偶排序 摘要:解题思路:先用sort排序,再输出注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const in…… 题解列表 2024年07月21日 0 点赞 0 评论 233 浏览 评分:9.9
2332: 信息学奥赛一本通T1181-整数奇偶排序 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e5;ll a…… 题解列表 2024年07月21日 0 点赞 0 评论 267 浏览 评分:9.9
编写题解 1131: C语言训练-斐波纳契数列 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll ;const ll N=1e6;ll a…… 题解列表 2024年07月20日 0 点赞 0 评论 297 浏览 评分:9.9
2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e3;ll a…… 题解列表 2024年07月20日 0 点赞 0 评论 414 浏览 评分:0.0
1720: 数据结构-基数排序 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e5;ll a…… 题解列表 2024年07月20日 0 点赞 0 评论 274 浏览 评分:0.0
2854: 密码翻译 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;string a;const int N…… 题解列表 2024年07月20日 0 点赞 0 评论 351 浏览 评分:9.9
编写题解 1671: 小九九 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main(){ for(int i=1; i<=9; i++) …… 题解列表 2024年07月19日 0 点赞 0 评论 729 浏览 评分:9.9
2852: 配对碱基链 摘要:解题思路:万能的张博维注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[258];int main(){cin>>s;for(i…… 题解列表 2024年07月19日 0 点赞 0 评论 294 浏览 评分:9.9
2850: 输出亲朋字符串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e7;stri…… 题解列表 2024年07月19日 0 点赞 0 评论 495 浏览 评分:9.9
2853: 字符替换 摘要:解题思路:将字符串和字符存储下来后,再通过循环把字符串反复判断并改为题目要求的字符注意事项:循环内需要i从0开始循环,并用strlen()函数把数组最后的值的下标求出,放入循环参考代码:#includ…… 题解列表 2024年07月19日 0 点赞 0 评论 226 浏览 评分:0.0