编写题解 1056: 二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ double a,b; cin>>a; b=(a-3…… 题解列表 2021年12月09日 0 点赞 0 评论 499 浏览 评分:0.0
编写题解 1053: 二级C语言-平均值计算 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[10]; int s=0,b,n=0; …… 题解列表 2021年12月09日 0 点赞 0 评论 375 浏览 评分:0.0
编写题解 1040: [编程入门]实数的打印 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ double e; cin>>e; for(int …… 题解列表 2021年12月09日 0 点赞 0 评论 424 浏览 评分:0.0
C++解题思路 摘要:解题思路: 注意事项: 参考代码: #include<cstdio> #include<iostream> using namespace std; int main() { …… 题解列表 2021年12月09日 0 点赞 0 评论 878 浏览 评分:0.0
编写题解 1044: [编程入门]三个字符串的排序 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string str1,str2,…… 题解列表 2021年12月09日 0 点赞 0 评论 432 浏览 评分:0.0
编写题解 1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; i…… 题解列表 2021年12月09日 0 点赞 0 评论 432 浏览 评分:0.0
蓝桥杯2021年第十二届省赛真题-杨辉三角形 摘要:解题思路: 参考https://blog.csdn.net/weixin_44091134/article/details/116748883做的注意事项: 参考代码:#include<iostrea…… 题解列表 2021年12月09日 0 点赞 1 评论 4001 浏览 评分:7.2
效率最高的方法(不服来比) 摘要:```cpp #include #include #include using namespace std; struct node { int x, y; }t; queu…… 题解列表 2021年12月08日 0 点赞 0 评论 709 浏览 评分:9.9
最快最好的题解(优化版)(时间复杂度极低)(思路清晰,大佬秒懂,小白看情况) 摘要:解题思路:很明显,这是一道最最基础的广度优先搜索,废话不多说,上代码注意事项:注意“size = q.size()"参考代码:#include <iostream>#include <cstring>…… 题解列表 2021年12月08日 0 点赞 0 评论 665 浏览 评分:9.9
一个非常非常简短的逗比题解 摘要:解题思路:看样例输出注意事项:无参考代码:#include <iostream>#include <cstdio>using namespace std;int main(){ cout<<"2…… 题解列表 2021年12月08日 0 点赞 0 评论 516 浏览 评分:6.0