C语言程序设计教程(第三版)课后习题10.4 (C语言代码) 摘要:解题思路:9 10与1 2 3 4 5 6 7 8分开输入另一个数组,有点麻烦。注意:数组赋值后要用fflush(stdin)清除缓存区!!!!注意事项:参考代码:#include<stdio.h>#…… 题解列表 2017年12月18日 1 点赞 0 评论 914 浏览 评分: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 评论 1160 浏览 评分: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 评论 1278 浏览 评分:0.0
C二级辅导-分段函数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"int main(){ double x; scanf("%lf",&x); if(x<1) { …… 题解列表 2017年12月18日 0 点赞 0 评论 908 浏览 评分:0.0
C二级辅导-求偶数和 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"#include <string.h>int main(){ int i,n,m,sum=0; char c[80]; …… 题解列表 2017年12月18日 0 点赞 0 评论 1069 浏览 评分: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 评论 1399 浏览 评分:0.0
花落的新手算法(C语言代码) 摘要:解题思路:学过结构体就可以做了,没什么难度,但是要注意变量类型。注意事项:参考代码:#include<stdio.h>struct store { char MC [100]; double DJ; …… 题解列表 2017年12月18日 0 点赞 0 评论 873 浏览 评分:0.0
人民币问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i,j,k,n,count=0; scanf("%d",&n); for(i…… 题解列表 2017年12月18日 0 点赞 0 评论 813 浏览 评分:0.0
蓝桥杯算法提高VIP-乘法运算 (C++代码) 摘要:#include<iostream> #include<iomanip> using namespace std; int main(){ int a,b; while(ci…… 题解列表 2017年12月18日 1 点赞 0 评论 1197 浏览 评分:0.0
蓝桥杯历届试题-打印十字图 (Java代码) 摘要:解题思路:注意事项: 参考代码: import java.util.Scanner; public class Main { public static void main(String[]…… 题解列表 2017年12月18日 1 点赞 0 评论 1896 浏览 评分:0.0