以下程序的输出结果是——————
main()
{
int i=0,s=0;
for(;;)
{if(i==3||i==5)continue;
if(i==6)break;
i++;
s+=i;
}
printf("%d\n",s);
呵呵呵呵呵呵呵5566
相关分类