下面C++代码执行后的输出是( )。
int N=9;
for (int i=2; i < N; i++){
if(N % i){
cout << "1#";
}
cout << "0" << endl;
1#0
1#
1#1#1#1#1#1
1#1#1#1#1#1#0