下面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