题解列表
蓝桥杯算法提高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……
编写题解 1516: 蓝桥杯算法提高VIP-字符串比较
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<string>
using namespace std;
int main()
{
string……
C++利润计算(在if从句中写一行代码就运行一下,让计算机计算出上个区间的利润再加上)
摘要:解题思路:在if从句中写一行代码就运行一下,让计算机计算出上个区间的利润再加上,末尾的10000,17500等均是上一次输入100000,200000所得结果其他后缀的利润皆如此。注意事项:参考代码:……