2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h> //利用fabs()绝对值函数intma…… 题解列表 2018年12月29日 0 点赞 0 评论 319 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:先另起下标(可以从第一个数字下标开始),输入一个数后判断它与另起下标数的大小,如果比后者小把下标数赋予另起的下标。找出之后最小之后利用两个数交换的原理。注意事项:绝对值参考代码:#inclu…… 题解列表 2018年12月14日 0 点赞 0 评论 288 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>*/intmain(){ inta[10],i,min,j,max,pos=0,POS…… 题解列表 2018年11月29日 0 点赞 1 评论 184 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C++描述 点开有惊喜) 摘要:解题思路:先找最小的数的角标,再进行交换的工作注意事项:没什么需要注意的,仔细就行了,注意绝对值的使用abs(m)是对m取绝对值,用abs的时候注意要定义一个math参考代码#include&…… 题解列表 2018年11月23日 0 点赞 0 评论 625 浏览 评分:0.0
题解 1065: 2004年秋浙江省计算机等级考试二级C 编程题(1) 摘要:#include<stdio.h>#include "math.h"#define N 10#define&…… 题解列表 2018年11月23日 0 点赞 0 评论 398 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:就是交换的时候注意记住下标,便于交换值参考代码:#include<stdio.h>#include<math.h>intmain(){inta[10];in…… 题解列表 2018年10月28日 0 点赞 0 评论 290 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>intmain(){inta[10],t,i,min=0;for(i=0;i&l…… 题解列表 2018年09月12日 0 点赞 0 评论 423 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>intmain(){chara[20];inti;for(i=0;i<10…… 题解列表 2018年08月31日 0 点赞 0 评论 367 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>intmain(){ …… 题解列表 2018年08月25日 0 点赞 0 评论 386 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) 一般思路(C语言代码) 摘要:解题思路:正常思路注意事项:[无]参考代码:#include<stdio.h>#include<math.h>voidswap(int*a,int*b){inttemp;tem…… 题解列表 2018年08月09日 0 点赞 0 评论 562 浏览 评分:0.0