public class Test01 {
public static void main(String[] args) {
/*
从键盘输入10个整数,存储到一个数组中,使用双重循环判断数组中数据是否重复
*/
Scanner scan = new Scanner(System.in);
int[] arr = new int[10];
boolean flot = true;
for (int i = 0; i < 10; i++) {
//for循环循环输入10个数
int i1 = scan.nextInt();
arr[i]= i1;
}
for (int i = 0; i <arr.length -1; i++) {
for (int j = i; j < arr.length-1; j++) {
if (arr[i]==arr[j+1]){
flot = false;
}
if (flot==true){
}else if(flot==false){
arr[i]=0;
flot = true;
}
}
}
if(flot){
System.out.println("没有重复");
}else{
System.out.println("重复了");
}
}
}
键盘输入10个数,判断是否输入重复
最新推荐文章于 2023-04-14 15:57:40 发布