二级C语言-温度转换(C++版) 摘要:解题思路:这个问题的解决方法很简单,关键在于华氏温度和摄氏温度之间的转换公式,由题目可知,公式为c=5*(f-32)/9。其中c代表摄氏温度,f代表华氏温度。难点讲解:本题的难点在于结果保留两位小数输…… 题解列表 2022年08月06日 0 点赞 1 评论 581 浏览 评分:8.0
蓝桥杯2017年第八届真题-Excel地址(C++) 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int n;int main(){ cin >> n; vector int p = 0; …… 题解列表 2022年08月06日 0 点赞 0 评论 236 浏览 评分:0.0
2331-信息学奥赛一本通T1180-分数线划定 摘要:解题思路:随便什么排序都能用参考代码:(这里我用冒泡)#include<iostream> using namespace std; struct xx{ int a; int b; }…… 题解列表 2022年08月06日 0 点赞 0 评论 349 浏览 评分:0.0
蓝桥杯2018年第九届真题-递增三元组(很简洁易懂) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N = 1e5 + 7;int a[N];int b[N];in…… 题解列表 2022年08月06日 0 点赞 0 评论 269 浏览 评分:8.0
蓝桥杯2015年第六届真题-打印大X(C++) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int m, n; cin >> m >> n;…… 题解列表 2022年08月06日 0 点赞 0 评论 236 浏览 评分:0.0
1035: [编程入门]自定义函数之字符类型统计 摘要: ```cpp #include #include using namespace std; int main() { string str; int cn…… 题解列表 2022年08月06日 0 点赞 0 评论 460 浏览 评分:9.9
1743: 大整数排序 (string数组,sort自定义) 摘要:```cpp #include using namespace std; string num[10005];//利用string进行大数存储 int n; bool cmp(string …… 题解列表 2022年08月06日 0 点赞 0 评论 341 浏览 评分:0.0
C# 2021: 坐标排序 摘要:```cpp #include using namespace std; struct fun { int x; int y; int z; }s[10000]…… 题解列表 2022年08月06日 0 点赞 0 评论 747 浏览 评分:0.0
SinzoL--题解 1676: 数据结构-链表的基本操作 摘要:####好久没写了,今天试着写一下 ####我是靠自己的理解来写的,所以极有可能会出现一些时候处理得复杂了或不规范的情况 我们先来定义一下所需函数: ```cpp void show(note…… 题解列表 2022年08月05日 0 点赞 0 评论 254 浏览 评分:0.0
优质题解 #C++1398——你的开发任务(敲详细) 摘要:解题思路: 题目举例违禁词的时候说的是 "love"和"Love" ,于是我以为是仅仅是首字母的大小写而已,然后就这样连续修改,提交,错了10几次(心疼),也懊恼了好几个小时,我一直以为是中间处理出…… 题解列表 2022年08月05日 0 点赞 0 评论 509 浏览 评分:9.9