成绩等级转换 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <string>#include <iomanip>using namespace std;int main ()…… 题解列表 2018年09月15日 0 点赞 2 评论 688 浏览 评分:0.0
数据结构-线索二叉树 (C语言代码) 摘要:解题思路:先用先序二叉树排序,存值。后用中序输出。注意事项:要注意ABC##DE#G##F### 注意最后是三个空格 你可以用纸去画下二叉树就知道了。#代表空格。其他的别人都有解释。 注意理解…… 题解列表 2018年09月15日 1 点赞 3 评论 1425 浏览 评分:2.0
蓝桥杯2013年第四届真题-打印十字图 (C++代码):有解析 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;#define N 5+30*4+1int main() { int n, i, j, k;…… 题解列表 2018年09月15日 8 点赞 0 评论 1814 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:新手用简单的功能解决注意事项:{}不要漏参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,f,n; scanf("%d",&a); …… 题解列表 2018年09月15日 0 点赞 0 评论 993 浏览 评分:0.0
明明的随机数 (C++代码)set集合很好解决 摘要:解题思路:使用STL中的set集合,set的不重复性和自带排序的功能,完全符合此题的,去除重复和排序的要求注意事项:参考代码:#include<iostream> #include<math.h> …… 题解列表 2018年09月15日 2 点赞 0 评论 1482 浏览 评分:8.0
半数集问题 (C++代码) 摘要:#include "iostream" #include "algorithm" using namespace std; int main() { int n; while (cin…… 题解列表 2018年09月15日 2 点赞 0 评论 947 浏览 评分:9.9
蓝桥杯算法提高VIP-高精度乘法 (C++代码) 摘要:#include "iostream" #include "cstdio" #include "cstring" #include "algorithm" #include "iomanip"…… 题解列表 2018年09月15日 5 点赞 0 评论 1432 浏览 评分:0.0
字符串的输入输出处理 (C语言代码) 一起输出就不行吗.... 摘要:解题思路:注意事项:提交不通过,不过结果应该是对的啊!参考代码:#include<stdio.h>int main(){ int b,N,i; char str[100][1000]; …… 题解列表 2018年09月15日 11 点赞 10 评论 2219 浏览 评分:9.5
C语言程序设计教程(第三版)课后习题6.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include "stdafx.h"#include <stdio.h>int main(int argc, char* argv[]){ int input = 0…… 题解列表 2018年09月15日 0 点赞 0 评论 700 浏览 评分:0.0
蓝桥杯历届试题-回文数字 (C语言代码) 摘要:解题思路:把5位和6位数分开来求解,先求解5位数的回文数,再求解6位数的回文数。参考代码:#include <stdio.h> int main() { int n,a[6],i,x,j,s;…… 题解列表 2018年09月15日 0 点赞 0 评论 1884 浏览 评分:0.0