1. ABCD 四个组件拼装,判断合格的同时修改数量,最后取四者中最小值即可。 public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a1 = sc.nextInt(), a2 = sc.nextInt(), a3 = sc.nextInt(), a4 = sc.nextInt(), x = sc.nextInt(); int[] a = {a1, a2, a3, a4}; sc.nextLine(); ...