填空题

下面程序的输出结果为
#include<iostream.h>
void main( )

in num=0,i=8;
do
i--;
num++;
while(--i) ;
cout < < num < < endl;

【参考答案】

D