x*=x+1
x++,2*x
x*=(1+x)
2*x,x+=2
第1题:
设x和y均为int型变量,且x=1,y=2,则表达式double(1+x/y)的值为【12】。
第2题:
以下程序的输出结果是
main()
{ int x=1,y=3;
printf("%d,",x++);
{ int x=0;x+=y*2;
printf("%d,%d, ",x,y);
}
printf("%d,%d\n",x,y);
}
A.1,6,3,1,3
B.1,6,3,6,3
C.1,6,3,2,3
D.1,7,3,2,3
第3题:
设有定义:int x=3;,以下表达式中,值不为l2的是( )。
A.x*=x+1
B.x++,3*x
C.x*=(1+x)
D.2*x.x+=6
第4题:
设有定义:int x=2;,以下表达式中,值不为6的是______。
A.x*=x+1
B.x++,2*x
C.x*=(1+x)
D.2*x,x+=2
第5题:
设有定义“intx=2;”,下列表达式中,值不为6的是( )。
A.X*=x+1
B.x++,2*x
C.x*=(1+x)
D.2*x,x+=2
第6题:
若有:
int x=25,y=14,z=19;
则在计算表达式x++<=25&&y--<=2&&++2<=18后,z的值为【 】。
第7题:
设有定义:int X=2;,以下表达式中,值不为6的是( )。
A.2*x.x+=2
B.x++,2*x
C.x*=(1+x)
D.x*!x+1
第8题:
和语句for(int x=0;x<15;x+=2)sum+=x+5;作用一样的语句是 ( )
A.for(int x=5;x<20;x+=2)sum+=x;
B.for(int x=5;x<20;x+=x-2)x+=2;
C.for(int x=0;x<15;x+=2)sum+=x+3;x+=2;
D.上述全对
第9题:
第10题:
阅读下列代码段int x=3;while (x<9) x+=2;x++;while语句成功执行的次数是()。
第11题:
设x=2,则表达式(x++)/3的值是()。
第12题:
1
2
3
4
第13题:
( 9 )阅读下列代码段
int x=3;
while (x<9)
x+=2;
x++;
while 语句成功执行的次数是 【 9 】 。
第14题:
以下程序的输出结果是______。main(){ int i,j,x=0; for (i=0;i<2;i++) { x++; for(j=0;j<3;j++) { if(j%2) continue; x++; } x++; } printf("x=%d\n",x);}
A.x=4
B.x=8
C.x=6
D.x=12
第15题:
设有定义语句:double x=2.5, y=4.7;int a=7;那么表达式x+a%3*(int)(x+ y)%2/4的值为【 】。
第16题:
以下程序的输出结果是
#include<iostream.h>
void main( )
{int x=1,y=3;
cout < < x++ < < ",";
{int x=0;x+=y * 2;
cout < < x < <"," < < y < <",";
}
cout < < x < < "," < < y;
}
A.1,6,3,1,3
B.1,6,3,6,3
C.1,6,3,2,3
D.1,7,3,2,3
第17题:
设有定义:int x-2;,以下表达式中,值不为6的是( )。
A.2*x,X+=2
B.x++,2*x
C.x*=(1+x)
D.x*=x+1
第18题:
A.0
B.12
C.15
D.18
第19题:
若有定义:floatx=3.5,y=3.6;则表达式()的值为6。
A.(int)x+(int)y
B.x+y
C.(int)(x+y)
D.int(x+y)
第20题:
经过以下语句定义后,表达式z+=x>y?++x:++y的值是______。int x=1,y=2,z=3;
A.2
B.3
C.6
D.5
第21题:
设有int a=0,b=5,c=2,x=0;,下面可以执行到x++的语句是()
第22题:
设有定义:intx=2;,以下表达式中,值不为6的是()
第23题:
if(a)x++;
if(a=b)x++;
if(a>=b)x++;
if(!(b-c))x++;