题解 2852: 配对碱基链 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e5+1;cha…… 题解列表 2024年07月12日 0 点赞 0 评论 186 浏览 评分:0.0
题解 2853: 字符替换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char c[32],l,k;int main(){ cin>>c; …… 题解列表 2024年07月12日 0 点赞 0 评论 189 浏览 评分:0.0
1102: 明明的随机数 摘要:解题思路:题目描述:给定一个无序的整数序列,编写一个程序实现插入排序算法,对整数序列进行从小到大的排序,并输出排序后的整数个数和排序后的整数序列。输入格式:第一行输入一个整数N,表示整数序列的长度;接…… 题解列表 2024年07月12日 0 点赞 0 评论 289 浏览 评分:0.0
Devc++来写奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void sort(int odds[],int length);int main(){int N=0;int i=0;scanf("…… 题解列表 2024年07月12日 0 点赞 0 评论 395 浏览 评分:6.0
1509: 蓝桥杯算法提高VIP-图形输出 (不直接使用printf) 摘要:题目描述:编写一程序,在屏幕上输出如下内容: X | X | X---+---+--- | |---+---+---O | O | O注意:本题请同学们严格按照图形的…… 题解列表 2024年07月12日 1 点赞 0 评论 297 浏览 评分:9.9
题解 2853: 字符替换 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char c[32],l,k;int main(){ cin>>c; …… 题解列表 2024年07月12日 0 点赞 0 评论 167 浏览 评分:9.9
2846: 统计数字字符个数 摘要:```cpp #include using namespace std; typedef long long ll; const int N=1e5; char a[N]; int ma…… 题解列表 2024年07月12日 0 点赞 0 评论 281 浏览 评分:0.0
1174: 计算直线的交点数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; while (cin >> n) { int dp[2…… 题解列表 2024年07月12日 0 点赞 0 评论 271 浏览 评分:0.0
1505: 蓝桥杯算法提高VIP-单词个数统计 摘要:题目描述:编写一个程序,输入一个字符串(长度不超过80),然后统计出该字符串当中包含有多少个单词。 例如:字符串“this is a book”当中包含有4个单词…… 题解列表 2024年07月12日 0 点赞 0 评论 296 浏览 评分:9.9
编写题解 1010: [编程入门]利润计算 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int x,y; cin>>x;//利润 if(x<=100…… 题解列表 2024年07月11日 1 点赞 0 评论 457 浏览 评分:0.0