我是菜鸡,感觉用链表效率高一些,请各位同学提出改进建议 (结构体、链表代码) 摘要:我是刚来的菜鸡,写题解是除了想提供另一种思路,还想让同学们看看我的代码有没有可以改进之处,毕竟刚刚学习C语言,还没形成规范和掌握套路。如有建议请提出,本人必定学习一番,以让我的基础更加巩固,谢谢同学们…… 题解列表 2018年02月23日 13 点赞 4 评论 1713 浏览 评分:9.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){int a[10],i,j=0;int b…… 题解列表 2018年04月14日 0 点赞 0 评论 545 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:我的思路比较简单,就是声明一个数组,在进行数据输入,然后再算平均值,最后比较算出数值;注意事项:参考代码:#include<stdio.h>#define Size 10int main()…… 题解列表 2018年04月21日 1 点赞 0 评论 538 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:/* 2018年5月2日19:13:08 目的: 输入10个数,求它们的平均值,并输出大于平均值的数据的个数。 */ #include <stdio.h> int main (vo…… 题解列表 2018年05月02日 0 点赞 0 评论 570 浏览 评分:2.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define N 10 int main() { int a[N], i, j =0; float ave =…… 题解列表 2018年05月03日 0 点赞 0 评论 526 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:最简单的循环实现注意事项:参考代码:#include<stdio.h>int main(){ int i,j=0,a[10],aver,sum=0; for(i=0;i<10;i…… 题解列表 2018年07月07日 0 点赞 0 评论 354 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){int n=0,s=0,a[10],i,t;for(i=0;i<10;i++)scanf("%d",&a[i]);for(…… 题解列表 2018年08月15日 0 点赞 0 评论 432 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a[10],ave,sum=0; int i,count=0; for(i=…… 题解列表 2018年08月24日 0 点赞 0 评论 446 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10],n,z=0; float y,s=0; for(n=0;n<10;n++) { scanf(…… 题解列表 2018年09月07日 0 点赞 0 评论 396 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a[10]; int p,sum=0; i…… 题解列表 2018年10月13日 0 点赞 0 评论 378 浏览 评分:0.0