【单选题】
有如下程序:
#includevoid main( )
{ int a=2,b=-1,c=2;
if (ab)
if (b0) c=0;
else c++;
printf(%d\n
}
该程序的输出结果是
【单选题】
以下程序的输出结果是( )
main()
{ int x=-10,y= 1,z=1;
if(xy)
if(y0) z=0;
else z=z+1;
printf(“%d\n”,z); }
【单选题】
以下程序的运行结果是( )。 #include stdio.hvoid main(){int i=1,s=3;do{s+=i++;if (s%7==0)continue;else++i;} while (sprintf(%d\n
【单选题】
执行下面程序后,运行结果是
#includevoid main( )
{ int x=41,y=1;
if (x%3==0 x%7==0)
{ y+=x;printf(y=%d\n}
else
{y=x;printf(y=%d}
}
【简答题】
以下程序的运行结果是[填空1]。 #include stdio.hvoid main(){int i=1,s=8;do{s+=i++;if (s%7==0)continue;else++i;} while (sprintf(%d\n}
【简答题】
以下程序的运行结果是[填空1]。 #include stdio.hvoid main(){int i=1,s=3;do{s+=i++;if (s%7==0)continue;else++i;} while (sprintf(%d\n}
【简答题】
以下程序的运行结果是[填空1]。 #include stdio.hvoid main(){int i=1,s=1;do{s+=i++;if (s%7==0)continue;else++i;} while (sprintf(%d\n}
【简答题】
以下程序的运行结果是[填空1]。 #include stdio.hvoid main(){int i=1,s=0;do{s+=i++;if (s%7==0)continue;else++i;} while (sprintf(%d\n}
【单选题】
下列程序执行后的输出结果是
#includevoid main( )
{ int a=5,b=60,c;
if (ab)
{c=a*b;printf(%d*%d=%d\n,b,a,c);}
else
{c=b/a;printf(%d/%d=%d\n,b,a,c);}
}
【单选题】
两次运行下面的程序,如果从键盘上分别输入1和10,则输出结果是。main( ){ int x; scanf(“%d”, if(x++5) printf(“%d”,x); else printf(“%d\n”,x++);}