一个简单易懂的代码 摘要:解题思路:首先遍历数组,然后设置基础量,对比,再找一个参数记录数组的位置。注意事项:参考代码#include <stdio.h>#include<math.h>main(){ int i,j; …… 题解列表 2017年07月22日 3 点赞 0 评论 1876 浏览 评分:4.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路: 不调用math函数(如果没有懂得原理只会调用函数的后果你懂的) 本题意在考察我们数组数据的 录入,保存,查找,交换。 对于本题: 1.定义数组 a[20] …… 题解列表 2018年07月04日 7 点赞 4 评论 1096 浏览 评分:2.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include <stdio.h>#include<math.h>int main(){ int a[10]; for (int i = 0; i < 10; i++) { …… 题解列表 2017年06月14日 1 点赞 0 评论 1645 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 解题思路以及注意事项:相必写过前面题目的同学应该比较熟悉这题,这题是前面那道题的变式,我也将用前面的思路来解,以便大家更好的理解。主要注意是将绝对值最小的和最后一个数交换,绝对值函数为fabs()。实例代码:#include"stdio.h"#include"math.h"voidputin(inta 题解列表 2017年08月07日 1 点赞 0 评论 2393 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<stdio.h>int main(){ int a[10],b=0,c[10],i=0,min,t,j,k=0; while(i<10) { scanf("…… 题解列表 2017年06月30日 0 点赞 0 评论 1294 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:典型的杂糅题型,考察:1,对绝对值函数的用法,。2,对排序法的使用。3,对数组的掌握。注意事项:参考代码:#include<stdio.h>#include<math.h>#define N…… 题解列表 2017年07月29日 0 点赞 0 评论 1574 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int num[10]={0},t; int i,tem=0; …… 题解列表 2017年08月27日 0 点赞 1 评论 1335 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int x[10],i,min,j,temp; for(i=0;i<10;i++) { …… 题解列表 2017年10月05日 0 点赞 0 评论 1494 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<stdio.h> #include <math.h> void main() { int nums[10],i,min=65535,o; for (i=0;…… 题解列表 2017年10月18日 0 点赞 0 评论 1381 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main(){ int a[10],i,min,j; for(i=0;i<10;…… 题解列表 2017年10月22日 0 点赞 1 评论 670 浏览 评分:0.0