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