请问以下程序中循环体执行了多少次?( )
int main() {
int cnt = 0;
for(int i=0; i<4; i+=3) {
cnt++;
}
cout << cnt << endl;
return 0;
1
0
2
4