编写题解 3008: 买笔, 摘要:解题思路:注意事项:只因你太美参考代码:#include <iostream>using namespace std;int main(int argc, char** argv) {int x,y,…… 题解列表 2023年02月06日 0 点赞 2 评论 400 浏览 评分:8.0
2790: 分段函数(c++) 摘要:解题思路:注意事项:保留3位浮点小数参考代码:#include<bits/stdc++.h>using namespace std;int main(){ float x; cin>>x;…… 题解列表 2023年02月06日 0 点赞 0 评论 491 浏览 评分:9.9
1842: 蓝桥杯2017年第八届真题-对局匹配 c++ 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> #include<cmath> #include<vector> #define F…… 题解列表 2023年02月05日 0 点赞 0 评论 522 浏览 评分:9.9
1027 题解 摘要:参考代码:#include<iostream> using namespace std; int add(int a,int b,int c) { if(a>b) { while(a%b!…… 题解列表 2023年02月05日 0 点赞 0 评论 213 浏览 评分:0.0
1043: [编程入门]三个数字的排序 摘要:解题思路:哔哔哔注意事项:bibibi参考代码:#include<iostream>using namespace std;int main(){ int a,b,c,x1,x2,x3,x4; …… 题解列表 2023年02月05日 0 点赞 0 评论 331 浏览 评分:2.0
编写题解 1206: 字符串问题 摘要:##编写题解 1206: 字符串问题 ```cpp #include using namespace std; int main() { string s; cin>>s; fo…… 题解列表 2023年02月04日 0 点赞 0 评论 352 浏览 评分:0.0
基本广度搜索 把队列搞明白 基本全能做 来看 摘要:解题思路:讲一遍可以走的全部走完 理解后特别简单 注意事项:参考代码:#includeusing namespace std;int dx[]={1,1,-1,-1,2,2,-2,-2};int dy…… 题解列表 2023年02月04日 0 点赞 0 评论 425 浏览 评分:9.9
1000:简单的a+b 摘要:参考代码:#include<iostream> using namespace std; int main() { int a,b; while(cin>>a>>b)cout…… 题解列表 2023年02月04日 0 点赞 0 评论 373 浏览 评分:0.0
简单的a+b 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main() { int a,b; cin>>a>>b; int c=a+b; cou…… 题解列表 2023年02月04日 0 点赞 0 评论 318 浏览 评分:0.0
求1+……+n的值 摘要:参考代码:#include<bits/stdc++.h> using namespace std; int main(){ long long n; cin>>n; …… 题解列表 2023年02月04日 0 点赞 0 评论 362 浏览 评分:0.0