#include<stdio.h> main() {int x,sum; scanf("%d",&x); sum=0; while(x>0) {if(x%2==0)sum+=x;

admin2010-04-27  7

问题 #include<stdio.h>
   main()
   {int x,sum;
     scanf("%d",&x);
     sum=0;
     while(x>0)
     {if(x%2==0)sum+=x;
     scanf("%d",&x);}
    printf("%d\n",sum);
   }
   程序运行时输入1 9 3 4 0<回车>,则程序运行结果是:______

选项

答案4

解析  1 9 3 4 0每个数据之间都有空格,在条件语句中只有偶数相加。所以只有4。
转载请注明原文地址:https://kaotiyun.com/show/2XAx777K
0

最新回复(0)