第1题 给一个整数 ,然后1为a,b,c 2为e,f,g,以此类推,要求打印出所有可能情况,按字典序 比如输入12 输出 ad ae af bd be bf cd ce cf 用递归解决(毕竟本身就必须要指数级复杂,应该没有比递归更舒服的了) public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String n = sc.nextLine(); int x=0; ...