执行以下代码,输出几列“*”?( )
for(int i = 0; i < 4; i++) { for(int j = 0; j < 5; j++) cout << "*"; cout << endl; }
4
5
6
7