下面的C++代码如下:
int cnt = 0; for (int i = 1; i < 9; i++) for (int j = 1; j < i; j += 2) cnt += 1; cout << cnt;
16
28
35
36