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