运行下面程序,一共可以输出几个“*”?( )
for i in range(3): for j in range(6): print('*', end = ' ') print()
18
15
9
12