花落的新手算法(C语言代码) 摘要:解题思路:学过结构体就可以做了,没什么难度,但是要注意变量类型。注意事项:参考代码:#include<stdio.h>struct store { char MC [100]; double DJ; …… 题解列表 2017年12月18日 0 点赞 0 评论 668 浏览 评分:0.0
花落的新手算法(C语言代码) 摘要:解题思路:学过结构体的就可以做啦,没什么难度。注意事项:参考代码:#include<stdio.h>#define AUM(x,y) {struct student t;t=x;x=y;y=t;}s…… 题解列表 2017年12月18日 0 点赞 0 评论 1010 浏览 评分:0.0
WU-蓝桥杯算法提高VIP-去注释 (C++代码) 摘要:题目不是很难但 需要细心一些 cin.get()的功能是从输入流中读取走 字符 参考代码:#include<iostream> #include<cstring> using namespace …… 题解列表 2017年12月18日 2 点赞 0 评论 1297 浏览 评分:9.5
C二级辅导-求偶数和 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"#include <string.h>int main(){ int i,n,m,sum=0; char c[80]; …… 题解列表 2017年12月18日 0 点赞 0 评论 709 浏览 评分:0.0
C二级辅导-分段函数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"int main(){ double x; scanf("%lf",&x); if(x<1) { …… 题解列表 2017年12月18日 0 点赞 0 评论 683 浏览 评分:0.0
C二级辅导-温度转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ double F,C; scanf("%lf",&F); C=(5.0/9)*(F-3…… 题解列表 2017年12月18日 0 点赞 0 评论 883 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int n,i,m,a[100]; scanf("%d",&n); for(i=0;i…… 题解列表 2017年12月18日 0 点赞 0 评论 822 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.4 (C语言代码) 摘要:解题思路:9 10与1 2 3 4 5 6 7 8分开输入另一个数组,有点麻烦。注意:数组赋值后要用fflush(stdin)清除缓存区!!!!注意事项:参考代码:#include<stdio.h>#…… 题解列表 2017年12月18日 1 点赞 0 评论 678 浏览 评分:0.0
C二级辅导-进制转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); printf("%o",n); retur…… 题解列表 2017年12月18日 0 点赞 0 评论 919 浏览 评分:0.0
【排队买票】 (C语言代码) 摘要:解题思路:用递归求出总共有多少种可行的情况,再用全排列来求出总情况注意事项:参考代码:#include <stdio.h>int fact(int a){ int i, sum = 1; for (i…… 题解列表 2017年12月18日 0 点赞 0 评论 1010 浏览 评分:0.0