下面的C++代码执行之后的输出是?
int i; for(i = -2; i < 2; i++) if(not i % 3 == 0) cout << i << "#"; cout << i;
-2#-1#1#2
-2#-1#1#2#3
1#2#3
0#1#2#3