编写题解 1848: 求输入数据绝对值 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ double a; while(cin>>a) {…… 题解列表 2024年07月18日 0 点赞 0 评论 168 浏览 评分:9.9
编写题解 2233: 蓝桥杯算法训练-图形显示 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main() { int n; cin>>n; for(int i=n;…… 题解列表 2024年07月18日 0 点赞 0 评论 89 浏览 评分:9.9
约瑟夫问题-变式(一种个人的解法) 摘要:题目:有n人围成一圈,顺序排号。从第1个人开始报数(从1到3报数),凡报到3的人退出圈子,问最后留下的是原来的第几号的那位。解题思路(或者说过程):不妨找到特殊的n值,使得1号选手留到最后,显而易见的…… 题解列表 2024年07月18日 0 点赞 0 评论 249 浏览 评分:9.9
2853: 字符替换 摘要:解题思路:注意事项:参考代码#include <bits/stdc++.h>using namespace std;const int N=1e7;char c[N],l,k;int main(){ …… 题解列表 2024年07月19日 0 点赞 0 评论 197 浏览 评分:9.9
2850: 输出亲朋字符串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e7;stri…… 题解列表 2024年07月19日 0 点赞 0 评论 113 浏览 评分:9.9
2852: 配对碱基链 摘要:解题思路:万能的张博维注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[258];int main(){cin>>s;for(i…… 题解列表 2024年07月19日 0 点赞 0 评论 117 浏览 评分:9.9
c语言简洁的解题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){ int n,i=0; scanf("%d",&n); struct stu { char id[255]; char…… 题解列表 2024年07月19日 0 点赞 0 评论 126 浏览 评分:9.9
编写题解 1671: 小九九 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main(){ for(int i=1; i<=9; i++) …… 题解列表 2024年07月19日 0 点赞 0 评论 257 浏览 评分:9.9
2854: 密码翻译 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;string a;const int N…… 题解列表 2024年07月20日 0 点赞 0 评论 139 浏览 评分: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 评论 147 浏览 评分:9.9