1000: [竞赛入门]简单的a+b 摘要:解题思路:这道题就是求几个加法等式的a+b,可以结合while循环输出就行注意事项:注意要用while循环来算参考代码:#include<iostream>//头文件using namespace s…… 题解列表 2022年04月26日 0 点赞 1 评论 1249 浏览 评分:9.9
1002 三个数最大值 摘要:解题思路:这道题比较简单,就是求三个数中的最大数,比如有三个数1 2 3,2>1 并且 3>2,那么这三个数的最大数就是3注意事项:如果用函数或排序做,可以用万能头文件(#include<bits/s…… 题解列表 2022年04月26日 0 点赞 0 评论 318 浏览 评分:8.8
万能头文件,规定格式输出 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double a,b; cin>>a; i…… 题解列表 2022年04月26日 0 点赞 0 评论 239 浏览 评分:0.0
编写题解 1483: 蓝桥杯算法提高VIP-数组替换---82同学看过来 摘要:解题思路:分别用两个vector容器存储输入的数据,把两个数组中要求取出的元素放到一个容器中,最后整体输出注意事项: 判断要取出的两个数组的元素的个数加起来是否超过了原本的第一个数组的大小,如果没有超…… 题解列表 2022年04月26日 0 点赞 0 评论 239 浏览 评分:0.0
编写题解 1479: 蓝桥杯算法提高VIP-删除数组中的0元素 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>using namespace std;void CompactIntegers(vector<int…… 题解列表 2022年04月26日 0 点赞 0 评论 254 浏览 评分:0.0
C++,小学生写的题解,快来看看吧。 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ int a[100000]…… 题解列表 2022年04月26日 0 点赞 0 评论 450 浏览 评分:9.9
八进制输出 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>#include<iomanip>using namespace std;int main(){…… 题解列表 2022年04月25日 0 点赞 0 评论 240 浏览 评分:0.0
计算素数之和 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int m,n,flag,i,j,sum=0; cin>>…… 题解列表 2022年04月25日 0 点赞 0 评论 259 浏览 评分:0.0
输出图案,C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ char a; int i; …… 题解列表 2022年04月25日 0 点赞 0 评论 235 浏览 评分:0.0
C++输入输出控制 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ double a; ci…… 题解列表 2022年04月25日 0 点赞 0 评论 274 浏览 评分:0.0