下面C++代码执行后将输出10。( )
1 int cnt = 0; 2 for (int i = 0; i < 10; i++) 3 for (int j = 0; j < i; j++){ 4 cnt += 1; 5 break; 6 } 7 cout << cnt;