2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:直接看题解。。。注意事项:该题不只是要找到最大值,还要记录最大值的位置参考代码:include<stdio.h>#include<math.h>int main(){ int a[10]; …… 题解列表 2019年04月18日 0 点赞 0 评论 452 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h> int main(){ int a[10], b[10], mix, t; int i, …… 题解列表 2019年04月25日 0 点赞 0 评论 388 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a[9],i,t=0,k,s,b,m; for(i=0;i<10;i++…… 题解列表 2019年05月04日 0 点赞 0 评论 508 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码: #include<stdio.h> #include<math.h>int main(){ int a[10],i,c,d; for(i=0;i<10;i++) { …… 题解列表 2019年05月06日 0 点赞 0 评论 331 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)水经验!!! 摘要:解题思路:随便你注意事项:无!参考代码:#include<stdio.h>#include<math.h>int main(){ int a[10]; int i,m,t; for(i=0;i<10;…… 题解列表 2019年05月12日 0 点赞 0 评论 424 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1)-题解(C语言代码) 摘要:```c #include #include #include int main() { int a[10],b[10],c[100]; int i,j,k,temp; for(…… 题解列表 2019年07月21日 0 点赞 0 评论 412 浏览 评分:0.0
自定义返回绝对值函数 摘要:#include int xx(int k) //自定义函数 用来返回绝对值 { if (k…… 题解列表 2019年08月02日 0 点赞 0 评论 553 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1)-题解(C语言代码)算法简单易懂 摘要:# 解此题分为五个步骤 #1输入 定义了四个数组a为原始数据,b为求过绝对值的数组,c为冒泡法排序做准备,d用来判断数组里是否有负数 ```c #include #include int …… 题解列表 2019年08月15日 0 点赞 0 评论 515 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1)-题解(C语言代码) 摘要: 关键:要记得保存和更新绝对值最小的数在数组中的下标。 第一个for循环结束后记得交换题目要求。 #include #include #define N 100…… 题解列表 2019年08月24日 0 点赞 0 评论 639 浏览 评分:0.0
二级C语言-最小绝对值-题解(C语言代码) 摘要: #include #include int main() { int a[10]; for(int i=0;i…… 题解列表 2019年11月06日 0 点赞 0 评论 361 浏览 评分:0.0