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 评论 1889 浏览 评分: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 评论 3955 浏览 评分: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 评论 1681 浏览 评分: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 评论 1728 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题11.8 (Java代码) 摘要:解题思路:注意事项:eclipse上运行无错,答案正确,但是在题目下运行显示运行错误所以本答案仅供参考参考代码:import java.util.HashSet;import java.util.It…… 题解列表 2017年07月13日 0 点赞 0 评论 2087 浏览 评分: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 评论 1718 浏览 评分:9.9
交换Easy (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { static Scanner sc = new…… 题解列表 2017年07月15日 0 点赞 0 评论 1864 浏览 评分:9.9
母牛的故事 (C语言代码) 摘要:解题思路:第n年:123456789fn头牛?123469131928在列出这个序列的过程中,应当能找出规律。 以n=6为例,fn=9头牛可以分解为6+3,其中6是上一年(第5年)的牛,3是新生的牛…… 题解列表 2017年07月16日 0 点赞 0 评论 2219 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题6.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define MAX 100int main(){ int a,b,c,d; int i; char p[MAX]; a=b=c=d…… 题解列表 2017年07月17日 0 点赞 0 评论 1254 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题6.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,j,n; long s,sum=0; scanf("%d",&n); fo…… 题解列表 2017年07月17日 0 点赞 0 评论 1370 浏览 评分:9.9