下面程序的运行结果是( )。#include main(){ int i,j,s=0;for(i=1,j=5;i
查看答案
写出下列程序段的输出结果____。int k,x;for(k=0,x=0;k<=9&&x!=10;k++)x=x+2;printf(“%d,%d”,k,x);
下列程序段执行时输入12345#,输出结果是____main(){ char c;for(c=getchar();getchar()!=’#’;c=getchar())putchar(c);return 0;}
以下程序段的运行结果是____int x=3;do{ printf(“%3d,”x-=2);}while(!(--x);