//顺序查找,线性查找 //int[] arr1 = new int[]{34,54,3,2,65,7,34,5,76,34,67}; //int target = 5; //方式1boolean flag = true; for (in...