2004年秋浙江省计算机等级考试二级C 编程题(1) (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*; public class Main { public static void main(String[] args) { …… 题解列表 2019年03月13日 0 点赞 0 评论 379 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:直接看题解。。。注意事项:该题不只是要找到最大值,还要记录最大值的位置参考代码:include<stdio.h>#include<math.h>int main(){ int a[10]; …… 题解列表 2019年04月18日 0 点赞 0 评论 309 浏览 评分: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 评论 290 浏览 评分: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 评论 398 浏览 评分: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 评论 261 浏览 评分: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 评论 341 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1)-题解(Python代码) 摘要:思路: 1、整行输入中含有空格,使用split函数利用空格将输入内容进行切分,map函数用来转换数据类型,但在python3版本中返回为map类型,如存入列表,需在外部使用list函数进行定义 2…… 题解列表 2019年07月21日 0 点赞 0 评论 1074 浏览 评分:6.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 评论 335 浏览 评分:0.0
自定义返回绝对值函数 摘要:#include int xx(int k) //自定义函数 用来返回绝对值 { if (k…… 题解列表 2019年08月02日 0 点赞 0 评论 461 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1)-题解(C语言代码)算法简单易懂 摘要:# 解此题分为五个步骤 #1输入 定义了四个数组a为原始数据,b为求过绝对值的数组,c为冒泡法排序做准备,d用来判断数组里是否有负数 ```c #include #include int …… 题解列表 2019年08月15日 0 点赞 0 评论 378 浏览 评分:0.0