写个C++的(C++代码) 摘要:解题思路:和C差不多,,,注意事项:参考代码:#include<iostream>#include <cmath>using namespace std;int main(){ int a[10]; …… 题解列表 2018年01月06日 0 点赞 0 评论 806 浏览 评分:8.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>using namespace std;int main(){ int i, j, fabs…… 题解列表 2018年02月07日 0 点赞 0 评论 780 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ int a[10],i,mini=0; …… 题解列表 2018年02月09日 0 点赞 0 评论 646 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:/*输入10个数,找出其中绝对值最小的数,将它和最后一个数交换,然后输出这10个数*/#include <stdio.h>#include <math.h>int mai…… 题解列表 2018年03月06日 0 点赞 0 评论 715 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (使用指针)(C语言代码) 摘要:解题思路:使用指针记录最小值的地址,循环结束时交换值注意事项:注意绝对值的使用,还有使用异或运算时,如果是同一个对象,会把值变成0的参考代码:#include<stdio.h>int main(){ …… 题解列表 2018年03月06日 0 点赞 0 评论 753 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)找出绝对值最小数与最后一位交换 摘要:第一遍错误是没有看清题目说的是绝对值。。参考代码如下:#include <stdio.h> #include <math.h> int main() { int a[10]; …… 题解列表 2018年03月30日 0 点赞 0 评论 465 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (Java代码)看没Java,就写了一个。啦啦! 摘要:解题思路:先输入十个数,然后找出最小值,在for循环输出即可。注意事项:Math.abs() Java中取绝对值方法。参考代码:import java.util.Scanner;public cla…… 题解列表 2018年04月09日 1 点赞 0 评论 1601 浏览 评分:9.9
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:将绝对值最小值标记,与最后一个数换位置注意事项:不要打乱其他数的顺序,abs函数在math.h库参考代码:#include<stdio.h>#include<math.h>int main(…… 题解列表 2018年04月26日 0 点赞 0 评论 505 浏览 评分:0.0
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 评论 459 浏览 评分: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 评论 442 浏览 评分:0.0