【数组的距离】 (C语言代码) 摘要:#include<stdio.h>#include<math.h>int main(){ int m,n; int a[1000],t,min=999999; scanf("%d %…… 题解列表 2018年03月27日 0 点赞 0 评论 675 浏览 评分:0.0
敲简单C语言代码!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main (){ int c,d,i,j; scanf ("%d %d",&c,&d…… 题解列表 2022年11月05日 0 点赞 0 评论 149 浏览 评分:0.0
数组的距离-题解(C语言代码) 摘要:解题思路:Just find the minimum between the two elements.注意事项:none参考代码:#include<stdio.h>int main(){ in…… 题解列表 2020年06月29日 0 点赞 0 评论 278 浏览 评分:0.0
比较简单的做法,可AC 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int cmp(const void * a,const void *b){ return *…… 题解列表 2018年09月29日 0 点赞 0 评论 486 浏览 评分:0.0
【数组的距离】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int f[1000],g[1000],i,j,m,n,t[1000001]={0},k=0,l,min;…… 题解列表 2017年07月29日 0 点赞 0 评论 745 浏览 评分:0.0
非常ez,随便看懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int m, n; scanf("%d %d", &m, &n); int a[…… 题解列表 2024年12月29日 0 点赞 0 评论 164 浏览 评分:0.0
c语言的一种思路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<limits.h>#include<math.h>#include<stdlib.h>int main(){ i…… 题解列表 2022年11月19日 0 点赞 0 评论 66 浏览 评分:0.0
合理运用数组,对min进行初始化 循坏得到最小值 摘要:#include<stdio.h> #include<string.h> #include<math.h> int main() { int m,n; int f[1000]; i…… 题解列表 2021年04月07日 0 点赞 0 评论 135 浏览 评分:0.0
【数组的距离】这题目有点怪,貌似不需要排序吧 摘要:/*这题目有点怪,貌似不需要排序吧,就只是求最小的元素|差|*/ #include<stdio.h> #include"malloc.h" #include"math.h" int main(…… 题解列表 2018年11月21日 1 点赞 0 评论 372 浏览 评分:0.0
1164: 数组的距离 摘要:```c++ #include int main() { int *p = nullptr; int *q = nullptr; int m, n; c…… 题解列表 2023年06月17日 0 点赞 0 评论 102 浏览 评分:0.0