以下程序段的运行结果              。  
int num = 0;
while(num < 6)
{   num ++;
    if(num == 3)  break;
    printf("%d#", num);
}