下面C++代码执行后,将输出5。( )
1 int cnt = 0; 2 for (int i = 1; i < 5; i++) 3 for (int j = i; j < 5; j +=i) 4 if (i * j % 2 == 0) 5 cnt += 1; 6 cout << cnt;