2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:#include <stdio.h> double n,j=1,k,sum=0; int i=1; double fact(double n) { k=1; for(j=1;j…… 题解列表 2018年05月05日 0 点赞 0 评论 1388 浏览 评分:0.0
【偶数求和】 (C语言代码) 摘要:解题思路:没什么特别的注意事项:参考代码:#include<stdio.h> int N[101]; int main() { int n,i,m,sum; while(scanf("%…… 题解列表 2018年05月05日 0 点赞 0 评论 650 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要: #include <stdio.h> int a[100]; int i,j=0,k=0,h=0,d; int main (void) { for(d=0;d<100;d++) …… 题解列表 2018年05月05日 0 点赞 0 评论 708 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:#include <stdio.h> #include <string.h> int main (void) { char a[100]; int i,c; gets(a)…… 题解列表 2018年05月05日 0 点赞 0 评论 1044 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.3 (C语言代码) 摘要:#include <stdio.h> #include <math.h> int a[10],b[10],j=0,k,h; int i; int fun(int *j,int *k…… 题解列表 2018年05月05日 0 点赞 0 评论 1007 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.4 (C语言代码) 摘要:#include <stdio.h> int a[100],b[100],k,h,q,w,e; int i; int fun(int *q,int *w) { e = *q; …… 题解列表 2018年05月05日 0 点赞 0 评论 742 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:#include <stdio.h> int a[100],b[100]; int i,k,h,q,w,e; int fun(int *q,int *w) { e = *q; …… 题解列表 2018年05月05日 0 点赞 0 评论 1449 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[4]; int i; gets(a); for(i=0;i<3;i++) { …… 题解列表 2018年05月05日 0 点赞 0 评论 907 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路注意事项:这道题主要是要弄清楚结构体的声明和创建。计算是一年中的第几天就很简单了,知道日期,把前面月份的天数相加,在加上是第几日就OK了。注意一下闰年的判定。参考代码:#include<std…… 题解列表 2018年05月05日 0 点赞 0 评论 2313 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.8 (Java代码) 摘要:解题思路:java中没有指针链表的概念,所以可以用二维数组来解决,用来存储学号和成绩,我的排序过程有可能有点麻烦,希望看题解的人能给出建议注意事项:参考代码:import java.util.Scan…… 题解列表 2018年05月05日 0 点赞 0 评论 970 浏览 评分:0.0