二级C语言-最小绝对值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a[10]; for(int i=0;i<10;i++) { scan…… 题解列表 2022年03月07日 0 点赞 0 评论 155 浏览 评分:0.0
二级C语言-最小绝对值-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main (){ int a[10],min,p=0,temp=0; for(int k=0…… 题解列表 2020年08月05日 0 点赞 0 评论 163 浏览 评分: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 评论 317 浏览 评分: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 评论 159 浏览 评分: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 评论 196 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include<stdio.h>#include<math.h>int main(){ int a[10],i,j; for(i=0;i<10;i++) { scanf("%d",&a[i]); …… 题解列表 2019年02月13日 0 点赞 0 评论 373 浏览 评分:0.0
列表排序、元素交换 摘要:**`` lis_num = list(map(int, input().split())) lis_num1 = lis_num possition1 = lis_…… 题解列表 2021年12月22日 0 点赞 0 评论 223 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:#include <stdio.h>#include<math.h>int main(){ int a[10]; for (int i = 0; i < 10; i++) { …… 题解列表 2017年06月14日 1 点赞 0 评论 884 浏览 评分:0.0
最小绝对值 数组 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,max,min;//最大和最小数的下标 int arr[10];//求完绝对值的数组 int arr…… 题解列表 2023年11月03日 0 点赞 0 评论 102 浏览 评分: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 评论 437 浏览 评分:0.0