下面的C++代码执行后将输出10行"OK"。( )
1 for (int i = 0; i < 5; i++) 2 for(int j = 0; j < i; j++) 3 printf("OK\n");