若有定义intx=3,y;则执行语句y=(++x)+(++x)+(++x)后,y=()A、9B、12C、15D、18
若有定义intx=3,y;则执行语句y=(++x)+(++x)+(++x)后,y=()
- A、9
- B、12
- C、15
- D、18
相关考题:
若有如下函数模板定义,则正确使用该函数模板的语句是()。templatevoidadd(typea,typeb,type} A、floatx,y,z;add(x,y,z)?;B、intx,y,z;add(x,y,C、floatx,y?;intz;add(x,y,z)?;D、floatx,y?;intz;add(x,y,
(16)若有定义语句:double x,y,*px,*py,执行了px=x, py=y;之后,正确的输入语句是A)scanf(“%f%f”,x,y); B) scanf(“%f%f”,x,y);C) scanf(“%lf%le”,px,py); D) scanf(“%lf%lf”,x,y);
已知函数定义“voidfun(inta,intb){b++;a++;}”,则执行“intx=2,y=3;fun(x,y);”后,变量x、y的值分别为()。 A.3,4B.3,3C.2,4D.2,3
若有定义语句:doub1e x,y,*px,*py;执行了px=x;py=y;之后,正确的输入语句是______。A.scanf("%f%f"x,y);B.scanf("%f%f"x,y);C.scanf("%1f%lf",px,y);D.scanf("%lf%lf",x,y);
下列程序的执行结果是()。includeincludeclass TestClass{public:intx,y 下列程序的执行结果是( )。 #include<iostream.h> #include<stdlib.h> class TestClass { public: intx,y; TestClass(){x=y=0;} TestClass(int a,int b){x=a;y=b;} void disp() { cout<<"X"="<<X<<",y="<<y<<endl; }A.x=2,y=2B.x=3,y=3C.x=2,y=3D.x=3,y=2
若有定义语句“doublex,y,*px,*Py;执行了px=&x;py=&y;”后,正确的输入语句是( )。A.scanf("%f%f",x,y);B.scanf("%f%f"&x,&y);C.scanf("%If%le",px,py);D.scanf("%lf%If"x,y);
单选题若有定义语句double x,y,*px,*py;执行了px=x;py=y;之后,输入语句正确的是( )。Ascanf("%f%f",x,y);Bscanf("%f%f"x,y);Cscanf("%1f%1e",px,py);Dscanf("%1f%1f",x,y);
单选题若有定义语句:double x,y,*px,*py;执行了px=x;py=y;之后,正确的输入语句是( )。Ascanf(%1f%1f,px,py);Bscanf(%f%fx,y);Cscanf(%f%f,x,y);Dscanf(%1f%1f,x,y);