下面C++代码执行后的输出是( )。
1 for (i=0; i<10; i++){ 2 if (i % 3) 3 continue; 4 printf("0#"); 5 } 6 if(i>=10) 7 printf("1#");