def deal(y): for z in range(2, y + 1): if y % z == 0: print(z,end=" ") x = y / z # 递归条件 x是输入整数除以第一个因数剩下的 if x != 1: # 递归终止条件 当x==1,当前因数...