解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class The164 {
public static void main(String[]args){
Scanner sc=new Scanner(System.in);
int m=sc.nextInt();
int n=sc.nextInt();
int f[]=new int[m];
int g[]=new int[n];
for(int i=0;i<f.length;i++){
f[i]=sc.nextInt();
}
for(int i=0;i<g.length;i++){
g[i]=sc.nextInt();
}
int c=Math.abs(f[0]-g[0]);
int min=c;
for(int i=0;i<f.length;i++){
for(int b=0;b<g.length;b++){
c=Math.abs(f[i]-g[b]);
min=min<c?min:c;
}
}
System.out.print(min);
}
}
0.0分
0 人评分
C二级辅导-同因查找 (C语言代码)浏览:705 |
【明明的随机数】 (C语言代码)浏览:845 |
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:651 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:913 |
矩阵加法 (C语言代码)浏览:1768 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:537 |
非常简单的算法,题解1049:C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:639 |
用getchar()函数接收字符,正序输入为什么会倒序输出浏览:767 |
C语言训练-自由落体问题 (C语言代码)浏览:637 |
P1001 (Java代码)浏览:740 |