为什么我写的这个程序运行不出结果。#include#includevoid main(){int k=0,sum=0;do{if(k%2==1)continue;k++;sum+=k;}while(k<=10);printf("sum=%d\n",sum);system("pause");}