2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:见代码中的注释注意事项:这里要加上一个头文件,我们才可以求绝对值参考代码:#include<stdio.h>#include<math.h> //求绝对值要加上这个头文件int ma…… 题解列表 2018年05月11日 0 点赞 0 评论 609 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (Java代码) 摘要:解题思路:Math.abs的运用注意事项:最后一个不输出空格参考代码:import java.util.Scanner; import java.lang.Math; public class 一…… 题解列表 2018年05月21日 0 点赞 0 评论 688 浏览 评分: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 评论 532 浏览 评分:0.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 评论 789 浏览 评分: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 评论 671 浏览 评分: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 评论 485 浏览 评分: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 评论 631 浏览 评分: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 评论 540 浏览 评分: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 评论 370 浏览 评分:0.0
题解 1065: 2004年秋浙江省计算机等级考试二级C 编程题(1) 摘要:#include<stdio.h> #include "math.h" #define N 10 #define min(a,b) (a)>(b)?(b):(a) int main() { …… 题解列表 2018年11月23日 0 点赞 0 评论 513 浏览 评分:0.0