填空题 有如下程序段:
int n=0,sum=0;
while(n++,n<50){
if(n%2= =0)continue;
sum+=n;
}
cout<<sum;
此程序段执行的输出结果为 __ 1__ ,while语句共执行了 __ 2__ 次。
【正确答案】
【答案解析】625 49