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