2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:见代码中的注释注意事项:这里要加上一个头文件,我们才可以求绝对值参考代码:#include<stdio.h>#include<math.h> //求绝对值要加上这个头文件int ma…… 题解列表 2018年05月11日 0 点赞 0 评论 471 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (Java代码) 摘要:解题思路:Math.abs的运用注意事项:最后一个不输出空格参考代码:import java.util.Scanner; import java.lang.Math; public class 一…… 题解列表 2018年05月21日 0 点赞 0 评论 595 浏览 评分:0.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 评论 347 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路: 不调用math函数(如果没有懂得原理只会调用函数的后果你懂的) 本题意在考察我们数组数据的 录入,保存,查找,交换。 对于本题: 1.定义数组 a[20] …… 题解列表 2018年07月04日 7 点赞 4 评论 721 浏览 评分:2.0
此题可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 评论 574 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) 一般思路(C语言代码) 摘要:解题思路:正常思路注意事项:[无]参考代码:#include<stdio.h>#include<math.h>void swap(int *a,int *b){ int temp; temp=*a; …… 题解列表 2018年08月09日 0 点赞 0 评论 590 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ int a[10]; int i; int t,mi…… 题解列表 2018年08月25日 0 点赞 0 评论 412 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ char a[20]; int i; for(i=0;i<10;i++) { …… 题解列表 2018年08月31日 0 点赞 0 评论 442 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a[10],t,i,min=0; for(i=0;i<=9;i++) {…… 题解列表 2018年09月12日 0 点赞 0 评论 446 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:就是交换的时候注意记住下标,便于交换值参考代码:#include<stdio.h>#include<math.h>int main(){ int a[10]; int i=0,mi…… 题解列表 2018年10月28日 0 点赞 0 评论 313 浏览 评分:0.0