2004年秋浙江省计算机等级考试二级C 编程题(1) (使用指针)(C语言代码) 摘要:解题思路:使用指针记录最小值的地址,循环结束时交换值注意事项:注意绝对值的使用,还有使用异或运算时,如果是同一个对象,会把值变成0的参考代码:#include<stdio.h>intmai…… 题解列表 2018年03月06日 0 点赞 0 评论 726 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:/*输入10个数,找出其中绝对值最小的数,将它和最后一个数交换,然后输出这10个数*/#include<stdio.h>#include<math.h&…… 题解列表 2018年03月06日 0 点赞 0 评论 682 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>usingnamespacestd;intmain(){inta[10],i,m…… 题解列表 2018年02月09日 0 点赞 0 评论 630 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>usingnamespacestd;intmain(){ &a…… 题解列表 2018年02月07日 0 点赞 0 评论 748 浏览 评分:0.0
写个C++的(C++代码) 摘要:解题思路:和C差不多,,,注意事项:参考代码:#include<iostream>#include<cmath>usingnamespacestd;intmain(){inta…… 题解列表 2018年01月06日 0 点赞 0 评论 793 浏览 评分:8.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<math.h>intmain(){&n…… 题解列表 2017年12月18日 0 点赞 0 评论 574 浏览 评分:0.0
WU-2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:参考代码:#include<stdio.h>#include<math.h>int main(){int a[10],i,t,j;for(i…… 题解列表 2017年12月13日 21 点赞 3 评论 2215 浏览 评分:8.4
我美吗! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){…… 题解列表 2017年12月12日 1 点赞 0 评论 700 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>intmain(){ inti,nums[…… 题解列表 2017年12月03日 0 点赞 0 评论 539 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:1.先利用数组存储这十个数值;2.存储好数值后再查找数组中最小的那个数值,用min保存,并记录当前的数组下标j=i;3.设一个中间变量temp=arr[9],然后再将arr[j]的值赋给ar…… 题解列表 2017年11月13日 1 点赞 0 评论 675 浏览 评分:0.0