【偶数求和】 (C语言代码) 摘要:解题思路:没什么特别的注意事项:参考代码:#include<stdio.h> int N[101]; int main() { int n,i,m,sum; while(scanf("%…… 题解列表 2018年05月05日 0 点赞 0 评论 486 浏览 评分: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 评论 494 浏览 评分: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 评论 705 浏览 评分: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 评论 717 浏览 评分: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 评论 515 浏览 评分: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 评论 919 浏览 评分: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 评论 752 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路注意事项:这道题主要是要弄清楚结构体的声明和创建。计算是一年中的第几天就很简单了,知道日期,把前面月份的天数相加,在加上是第几日就OK了。注意一下闰年的判定。参考代码:#include<std…… 题解列表 2018年05月05日 0 点赞 0 评论 1366 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.8 (Java代码) 摘要:解题思路:java中没有指针链表的概念,所以可以用二维数组来解决,用来存储学号和成绩,我的排序过程有可能有点麻烦,希望看题解的人能给出建议注意事项:参考代码:import java.util.Scan…… 题解列表 2018年05月05日 0 点赞 0 评论 835 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){int a,b;scanf("%d%d",&a,&b);printf("%d\n",a+b);}…… 题解列表 2018年05月05日 0 点赞 0 评论 452 浏览 评分:0.0