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 评论 649 浏览 评分: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 评论 590 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:见代码中的注释注意事项:这里要加上一个头文件,我们才可以求绝对值参考代码:#include<stdio.h>#include<math.h> //求绝对值要加上这个头文件int ma…… 题解列表 2018年05月11日 0 点赞 0 评论 728 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (Java代码) 摘要:解题思路:Math.abs的运用注意事项:最后一个不输出空格参考代码:import java.util.Scanner; import java.lang.Math; public class 一…… 题解列表 2018年05月21日 0 点赞 0 评论 772 浏览 评分: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 评论 683 浏览 评分: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 评论 949 浏览 评分: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 评论 748 浏览 评分: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 评论 544 浏览 评分: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 评论 802 浏览 评分: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 评论 603 浏览 评分:0.0