运行下面程序,可以输出几行“*”?( )
for i in range(0, 7): for j in range(0, 4): print('*', end = ' ') print()
6
3
7
4