番5 拆分位数 (C++代码) 摘要:解题思路: c++学习路的第二题,直接cout输出注意事项:参考代码:#include <iostream> using namespace std; int mai…… 题解列表 2019年04月06日 0 点赞 0 评论 1719 浏览 评分:9.9
番4 C语言程序设计教程(第三版)课后习题1.5 (C++代码) 摘要:解题思路:没什么 c++的入门题 只是单纯的用循环输出*参考代码:#include <iostream> using namespace std; int main () { int i;…… 题解列表 2019年04月06日 0 点赞 0 评论 1648 浏览 评分:0.0
蓝桥杯基础练习VIP-时间转换 (C++代码) 摘要:解题思路: 简单的转换嘛,用一下结构体。参考代码:#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(…… 题解列表 2019年04月05日 0 点赞 0 评论 1570 浏览 评分:0.0
优质题解 蓝桥杯2013年第四届真题-错误票据 (C++代码)两种做法,hash和sort 摘要:解题思路: 这个输入需要一些技巧,首先,他给的N表示输入多少行,然后每一行到底输入多少个数字我们不知道,这就需要我们去判断输入的结尾是不是换行号,这里提供了一个C++的判断方法:while…… 题解列表 2019年04月05日 3 点赞 6 评论 5268 浏览 评分:9.5
蓝桥杯历届试题-翻硬币 (C++代码)爆搜挂机就AC了 摘要:解题思路:直接一发假的DFS,去搜就行。参考代码:#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(0),…… 题解列表 2019年04月05日 1 点赞 0 评论 1425 浏览 评分:0.0
C语言训练-最大数问题 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; int main() { int a[…… 题解列表 2019年04月05日 0 点赞 0 评论 1272 浏览 评分:0.0
C语言训练-数字母 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string a;…… 题解列表 2019年04月05日 0 点赞 0 评论 1733 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.2 (C++代码) 摘要:解题思路: 注释注意事项:参考代码:#include<iostream> #include<string> //使用string类 using namespace std; int ma…… 题解列表 2019年04月05日 1 点赞 2 评论 3254 浏览 评分:9.3
P1002 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;struct student{ char name[1…… 题解列表 2019年04月04日 0 点赞 0 评论 1648 浏览 评分:0.0
小明A+B (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b; int n; cin>>n;…… 题解列表 2019年04月04日 0 点赞 0 评论 1373 浏览 评分:0.0