网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

若有定义:int x=2,y=3;float i;则以下符合C语言语法的表达式是()

  • A、x=x*3=2
  • B、x=(y==1)
  • C、i=float(x)
  • D、i%(-3)

参考答案

更多 “若有定义:int x=2,y=3;float i;则以下符合C语言语法的表达式是()A、x=x*3=2B、x=(y==1)C、i=float(x)D、i%(-3)” 相关考题
考题 若有以下定义和语句union data{ int i; char c; float f; } x;int y;则以下语句正确的是A)x=10.5;B)x.c=101;C)y=x;D)printf("%d\n",x);

考题 若有如下函数模板定义,则正确使用该函数模板的语句是( )。templatevoid add(type a, type b, type 和c){ c=a+b ; } A.float x,y,z;add(x,y,z) ;B.int x,y,z;add(x,y,和z) ;C.float x,y ;int z;add(x,y,z) ;D.float x,y ;int z;add(x,y,和z) ;

考题 若有定义:int a=7;float x=2.5,y=4.7;则表达式x+a%3*(int)(x+y)%2/4的值是A.2.500000B.2.750000C.3.500000D.0.000000

考题 若有定义语句:int x=3,y=2,z=1;则表达式x <y?x:y的值是______。

考题 若变量a、b、x、i都已正确定义并赋值,则以下符合C语言语法的表达式是( )。A.a+=a-=(b=4)*(a=3)SXB 若变量a、b、x、i都已正确定义并赋值,则以下符合C语言语法的表达式是( )。A.a+=a-=(b=4)*(a=3)B.x%(-3);C.a=a*3=2D.y=float(i)

考题 若有定义:int x=1,y=2;float a=3.7,b=2.1;则(x+y)%2+(int)a/(int)b表达式的值为( )。

考题 已知各变量的定义如下 int i=8,k,a,b; unsigned long w=5; double x=1.42,y=5.2; 则以下符合C++语言语法的表达式是( )。A.a+=a-= (b=4)*(a=3)B.a=a*3+2C.x%(-3)D.y=float i

考题 若变量a、b、x、j都已正确定义并赋值,则以下符合C语言语法的表达式是( )。A.a+=&-=(b-4)*(a=3)SX 若变量a、b、x、j都已正确定义并赋值,则以下符合C语言语法的表达式是( )。A.a+=&-=(b-4)*(a=3)B.x%(-3);C.a=a*3=2D.y=float(i)

考题 若有定义:int a=2,b=3;floatx=3.5,y=2.5;则表达式(float)(a+b)/2+(int)x%(int)y的值是() A.3.5B.3.0C.2.5D.2.0

考题 若有定义:int x=2,y=3;float i;则以下符合C语言语法的表达式是() A.x=x*3=2B.x=(y==1)C.i=float(x)D.i%(-3)

考题 若有定义:int a=4, b=5;float x=3.4,y=2.1;,则下列表达式的值为( )。 (float) (a+b)/2+(int)x%(int)yA.5.5B.55C.5.5D.55

考题 若有定义:“int a=4,b=5;float x=3.4,y=2.1;”,则下列表达式的值为( )。 (float)(a+b)/2+(int)x%(int)y;A.5.5B.55C.5.500000D.55.00000

考题 下列程序的输出结果是______。 main() { float x=3.6; int i; i=(int)x; printf("x=%f,i=%d",x,i); }A.x=3.600000,i=4B.x=3 i=3C.x=3.600000,i=3D.x=3 i=3.600000

考题 若有定义:int a=2,b=3;float x=3.5,y=2.5;则下面表达式的值为______。(float)(a+b)/2+(int)x%(int)yA.3.5B.35C.3.5D.35

考题 若有int x=3,*px; float y=3,*py;,则正确的赋值表达式是 ( )。 A、px=&xB、py=&xC、px=&yD、py=&y

考题 设有如下的变量定义,以下符合C语言语法的表达式是______。int i=8,k,a,b;unsigned long w=5;double x=1,42,y=5.2;A.a+=a-=(b=4)*(a=3);B.x%(-3);C.a=a*3=2;D.y=float(i);

考题 若有以下程序:include using namespace std;class Base{private: int x;protected: i 若有以下程序: #include <iostream> using namespace std; class Base { private: int x; protected: int y; public: int z; void setx(int i) { x=i; int getx () { return x; } }A.1,2,3,4B.产生语法错误C.4,3,2,1D.2,3,4,5

考题 以下程序的输出结果是()。  #include  void main( )  {float x=3.6;    int  i;   i=(int)x;   printf("x=%f,i=%d/n",x,i); } A、x=3 i=3.600000B、x=3.600000,i=4C、x=3,i=3D、x=3.600000,i=3

考题 若有定义 class A{int x,y; static float f(int a){…} float g(int x1,int x2){…}} 及A a1=new A( );则下列用法中非法的是( )。A、g(3,2)B、f(3)C、a1.f(4)D、a1.g(2,5)

考题 若已定义x和y为float类型,则表达式:x=1,y=x+3/2的值是()。A、1B、3C、2.5D、2.0

考题 以下程序的输出结果是( ).  main( )  {float x=3.6;    int  i;   i=(int)x;     printf("x=%f,i=%d/n",x,i);  }A、x=3.600000,i=4B、x=3,i=3C、x=3.600000,i=3D、x=3 i=3.600000

考题 在C语言中下列变量定义和赋值错误的是()。A、int i,j=20;B、char c="c";C、float f=1+2;D、int x,y;x=y=10;

考题 已知各变量的类型说明如下: inti=8,k,a,b; unsignedlongw=5; doublex=1.42,y=5.2; 则以下符合C语言语法的表达式是()。A、a+=a-=(b=4)*(a=3)B、a=a*3=2C、x%(-3)D、y=float(i)

考题 若有定义:int a=2,b=3;floatx=3.5,y=2.5;则表达式(float)(a+b)/2+(int)x%(int)y的值是()A、3.5B、3.0C、2.5D、2.0

考题 单选题若有定义 class A{int x,y; static float f(int a){…} float g(int x1,int x2){…}} 及A a1=new A( );则下列用法中非法的是( )。A g(3,2)B f(3)C a1.f(4)D a1.g(2,5)

考题 单选题若有定义:int a=2,b=3;floatx=3.5,y=2.5;则表达式(float)(a+b)/2+(int)x%(int)y的值是()A 3.5B 3.0C 2.5D 2.0

考题 单选题若有定义:int x=2,y=3;float i;则以下符合C语言语法的表达式是()A x=x*3=2B x=(y==1)C i=float(x)D i%(-3)