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
最小绝对值 数组 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,max,min;//最大和最小数的下标 int arr[10];//求完绝对值的数组 int arr…… 题解列表 2023年11月03日 0 点赞 0 评论 106 浏览 评分:0.0
1065: 二级C语言-最小绝对值 摘要:#include<bits/stdc++.h> using namespace std; int main(){ vector<int> a(10,0),b(10,0); …… 题解列表 2021年12月13日 0 点赞 0 评论 161 浏览 评分:0.0
二级C语言-最小绝对值-题解(C语言代码) 摘要:题目: 输入10个数,找出其中绝对值最小的数,将它和最后一个数交换,然后输出这10个数。 #include #include int main() {…… 题解列表 2020年02月28日 0 点赞 0 评论 235 浏览 评分:0.0
二级C语言-最小绝对值 摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))b=[abs(i) for i in a]index=b.index(min(b))a[index],a[…… 题解列表 2022年02月22日 0 点赞 0 评论 98 浏览 评分:0.0
1065: 二级C语言-最小绝对值 题解(c语言代码) 摘要:```c #include #include int main() { int arr[10] = { 0 }; for (int i = 0; i < 10; i++)…… 题解列表 2024年08月05日 0 点赞 0 评论 172 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>*/int main(){ int a[10],i,min,j,max,pos=0,POS=0,temp; for(i=0…… 题解列表 2018年11月29日 0 点赞 1 评论 203 浏览 评分: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语言代码) 摘要:解题思路:1.先利用数组存储这十个数值;2.存储好数值后再查找数组中最小的那个数值,用min保存,并记录当前的数组下标j=i;3.设一个中间变量temp=arr[9],然后再将arr[j]的值赋给ar…… 题解列表 2017年11月13日 1 点赞 0 评论 696 浏览 评分:0.0
二级C语言-最小绝对值-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[10],b=0; int min,i; …… 题解列表 2021年02月01日 0 点赞 0 评论 175 浏览 评分:0.0