题解列表
蓝桥杯算法提高VIP-第二大整数
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;set<int> st;int main() { int num; wh……
蓝桥杯算法提高VIP-最大最小值
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n,a[10005];int main(){ cin>>n; for(int……
蓝桥杯算法提高VIP-简单加法
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int t;int main(){ for(int i=1;i<1000;i+……
编写题解 1770: [编程入门]链表之报数问题 队列
摘要:参考代码:#include<iostream>
#include<string>
#include<algorithm>
#include<queue>
using namespace std……
编写题解 1739: 成绩排序 结构体
摘要:参考代码:#include<iostream>
#include<string>
#include<algorithm>
#include<stdio.h>
using namespace s……
编写题解 1539: 蓝桥杯算法提高VIP-格式化数据输出
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<cstring>
using namespace std;
int main()
{
cout<<……
字符串分类统计(C++简单题解)
摘要:解题思路:对字符串进行带空格输入,接着判断类型进行统计,最后输出;注意事项:需要使用getline进行输入参考代码:#include<iostream>#include<fstream>#includ……