C语言程序设计教程(第三版)课后习题9.6 (C语言代码) 摘要:#include<stdio.h> int main(void) { double a; scanf("%lf",&a); printf("%6.2lf\n",a); printf…… 题解列表 2017年07月03日 0 点赞 0 评论 1148 浏览 评分:9.9
人民币问题 (C语言代码) 摘要:#include<stdio.h>int main(){ int a, q, w, e,z,x,c ,fangfa = 0; scanf("%d", &a); z = a / 5; x = a / …… 题解列表 2017年07月04日 1 点赞 2 评论 1010 浏览 评分:9.9
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<stdio.h> #define N 10 int main() { float input[N], total= 0; int i,num = 0; for (i = …… 题解列表 2017年07月05日 0 点赞 0 评论 1324 浏览 评分:9.9
C二级辅导-等差数列 (C语言代码) 摘要:#include<stdio.h> int main() { int i, num, grade = 2, total = 0; scanf("%d",&num); for(i = 0 ; …… 题解列表 2017年07月05日 0 点赞 6 评论 3318 浏览 评分:9.9
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include<stdio.h> double fact(int n); double mypow(double x ,int n); int main() { int i,n; d…… 题解列表 2017年07月06日 0 点赞 0 评论 972 浏览 评分:9.9
蛇行矩阵 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i=0,j,k,m; int a[100][100]={0}; scanf("%d",&n);…… 题解列表 2017年07月09日 0 点赞 0 评论 1219 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题11.8 (Java代码) 摘要:解题思路:注意事项:eclipse上运行无错,答案正确,但是在题目下运行显示运行错误所以本答案仅供参考参考代码:import java.util.HashSet;import java.util.It…… 题解列表 2017年07月13日 0 点赞 0 评论 1759 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题6.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> main() { int x,a,b,c; for(x=100;x<=999;x++) { a=x/100; b=x%1…… 题解列表 2017年07月13日 0 点赞 0 评论 1238 浏览 评分:9.9
交换Easy (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { static Scanner sc = new…… 题解列表 2017年07月15日 0 点赞 0 评论 1427 浏览 评分:9.9
母牛的故事 (C语言代码) 摘要:解题思路:第n年:123456789fn头牛?123469131928在列出这个序列的过程中,应当能找出规律。 以n=6为例,fn=9头牛可以分解为6+3,其中6是上一年(第5年)的牛,3是新生的牛…… 题解列表 2017年07月16日 0 点赞 0 评论 1596 浏览 评分:9.9