下面C++代码执行后输出是()。
num = 0; while (num <= 5){ num += 1; if (num == 3) continue; printf("%d#", num); }
1#2#4#5#6#
1#2#4#5#6
1#2#3#4#5#6#
1#2#3#4#5#6