运行下面程序,一共可以输出几个“*”?( )
for i in range(0, 6): for j in range(0, 4): print('*', end = ' ') print()
24
35
10
14