此题可AC (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a[10], i, t, j; for (i = 0; i < 10; …… 题解列表 2018年07月14日 1 点赞 0 评论 546 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路: 不调用math函数(如果没有懂得原理只会调用函数的后果你懂的) 本题意在考察我们数组数据的 录入,保存,查找,交换。 对于本题: 1.定义数组 a[20] …… 题解列表 2018年07月04日 7 点赞 4 评论 717 浏览 评分:2.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double a[10]; int i; int temp=0…… 题解列表 2018年06月07日 0 点赞 0 评论 318 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (Java代码) 摘要:解题思路:Math.abs的运用注意事项:最后一个不输出空格参考代码:import java.util.Scanner; import java.lang.Math; public class 一…… 题解列表 2018年05月21日 0 点赞 0 评论 580 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:见代码中的注释注意事项:这里要加上一个头文件,我们才可以求绝对值参考代码:#include<stdio.h>#include<math.h> //求绝对值要加上这个头文件int ma…… 题解列表 2018年05月11日 0 点赞 0 评论 449 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int a[10],i,min,k,temp; for(i …… 题解列表 2018年05月06日 0 点赞 0 评论 437 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (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 评论 443 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:将绝对值最小值标记,与最后一个数换位置注意事项:不要打乱其他数的顺序,abs函数在math.h库参考代码:#include<stdio.h>#include<math.h>int main(…… 题解列表 2018年04月26日 0 点赞 0 评论 490 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (Java代码)看没Java,就写了一个。啦啦! 摘要:解题思路:先输入十个数,然后找出最小值,在for循环输出即可。注意事项:Math.abs() Java中取绝对值方法。参考代码:import java.util.Scanner;public cla…… 题解列表 2018年04月09日 1 点赞 0 评论 1587 浏览 评分:9.9
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)找出绝对值最小数与最后一位交换 摘要:第一遍错误是没有看清题目说的是绝对值。。参考代码如下:#include <stdio.h> #include <math.h> int main() { int a[10]; …… 题解列表 2018年03月30日 0 点赞 0 评论 458 浏览 评分:0.0