2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main(){ int a[10],i,min,j; for(i=0;i<10;…… 题解列表 2017年10月22日 0 点赞 1 评论 349 浏览 评分:0.0
二级C语言-最小绝对值-题解(C++代码) 摘要:```cpp #include #include using namespace std; int num[10]; int main(){ int t=0; int min=123…… 题解列表 2021年01月15日 0 点赞 0 评论 263 浏览 评分: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 评论 335 浏览 评分:0.0
题解 1065: 2004年秋浙江省计算机等级考试二级C 编程题(1) 摘要:#include<stdio.h> #include "math.h" #define N 10 #define min(a,b) (a)>(b)?(b):(a) int main() { …… 题解列表 2018年11月23日 0 点赞 0 评论 416 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int a[10]; int pos = 0,min = 0x7ffff…… 题解列表 2019年01月18日 0 点赞 0 评论 289 浏览 评分:0.0
此题可AC (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a[10], i, t, j; for (i = 0; i < 10; …… 题解列表 2018年07月14日 1 点赞 0 评论 546 浏览 评分:0.0
编写题解 1065: 二级C语言-最小绝对值 摘要:解题思路:注意事项:参考代码:a = map(int,input().split())lis = []lis2 = []for i in list(a): #将a列表化,a的数…… 题解列表 2022年05月28日 0 点赞 0 评论 94 浏览 评分:0.0
二级C语言-最小绝对值--朴素方法 摘要:解题思路:利用循环找到绝对值最小位,再让它与最后一位交换,最后输出注意事项:说的是绝对值最小,所以使用了abs()函数;Python中可以直接这样优雅地交换数据a,b=b,a;最初想用join()函数…… 题解列表 2022年09月10日 0 点赞 0 评论 808 浏览 评分:0.0
二级C语言-最小绝对值(C语言代码) 摘要:#include int findmin(int array[],int lenth,int *min);//传入一个数组并找出其最小值,并返回最小值的位置 void swap(int *p…… 题解列表 2021年08月29日 0 点赞 0 评论 104 浏览 评分: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 评论 643 浏览 评分:0.0