import java.util.*; public class Solution { public ArrayList<ArrayList<Integer>> res = new ArrayList<>(); // 定义一个二维数组,用于存放最终的返回结果 public int[] arr = new int[] {1, 2, 3, 4, 5, 6, 7, 8, 9}; // 根据题目要求,组合中只能有 1~9 的正整数 public int K; // 一共有 k 个数 public int N; // 相加...