下面程序的輸出結果為() #include < iostream.h> void main() {int num=2,i=6; do {i--; num++; }while(--i); cout<< num<< endl; }