C语言程序设计教程(第三版)课后习题6.3 (C++代码) 摘要:解题思路:本题我们应掌握,通过*增加位数,并在先前通过中间变量储存后续需要处理的变量。参考代码:#include<iostream> using namespace std ; int main(…… 题解列表 2018年04月20日 1 点赞 0 评论 1416 浏览 评分:0.0
蓝桥杯2013年第四届真题-横向打印二叉树 (C++代码) 摘要:解题思路:注意事项:参考代码:/* ...|-12 10-| ...|-8-| .......|...|-7 .......|-5-| ...........|-4 */ …… 题解列表 2018年04月19日 1 点赞 1 评论 2999 浏览 评分:8.7
C语言程序设计教程(第三版)课后习题10.5 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int baoshu(int n){ int vi…… 题解列表 2018年04月19日 12 点赞 2 评论 2104 浏览 评分:9.7
数据结构-行编辑程序 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int main() { char str1…… 题解列表 2018年04月19日 0 点赞 0 评论 1181 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C++代码) 摘要:解题思路:利用if...else if...else语句完成题目注意事项:注意仔细读题参考代码:#include<iostream> using namespace std ; int main(…… 题解列表 2018年04月19日 0 点赞 0 评论 1264 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C++代码) 摘要:解题思路:利用if...else if...else语句合理分配分数区间的输出注意事项:参考代码:#include<iostream> using namespace std ; int main…… 题解列表 2018年04月19日 0 点赞 0 评论 1700 浏览 评分:0.0
数据结构-字符串插入 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { char a[15…… 题解列表 2018年04月18日 0 点赞 0 评论 1922 浏览 评分:9.9
谁是你的潜在朋友 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int M=200+5; int a[M]={0}; int main…… 题解列表 2018年04月18日 1 点赞 1 评论 1032 浏览 评分:9.0
字符串连接 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string…… 题解列表 2018年04月18日 0 点赞 0 评论 966 浏览 评分:0.0
字符串排序 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<algorithm> #include<string> using na…… 题解列表 2018年04月18日 0 点赞 0 评论 2065 浏览 评分:9.9