运行下面程序,输出的结果是( )。
def func(x): for i in range(1, x): if x % i == 0: print(i, end = ' ') func(16)
1 2
1 2 4 8
2 4 8
2 4 8 16