执行以下程序,共打印( )次 "外循环"。
#include<iostream>
using namespace std;
void main() {
int a =0;
for (int i = 0; i < 5; i++)
{
cout <<"外循环"<< endl;
for (int j = 0; j < 5; j++)
cout <<"内循环"<< endl;
}
cout << a << endl;
5
25
1
24