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