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

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

switch(表达式)语句中的“表达式”,允许的类型是()。

  • A、float,int
  • B、float,int,char
  • C、int,char
  • D、char,double

参考答案

更多 “switch(表达式)语句中的“表达式”,允许的类型是()。A、float,intB、float,int,charC、int,charD、char,double” 相关考题
考题 定义int a; float f; double i; 表达式 15+i*f+ˊAˊ的值是 _______ 。 A.floatB. intC. charD. double

考题 定义int a; float f; double i; 6.定义表达式15+i*f+ˊAˊ的值是() 。 A.floatB. intC. charD. double

考题 若有以下类型说明语句: char w;int x;float y, z; 则表达式w*x+z-y的结果为______类型。A.floatB.charC.intD.double

考题 若有以下类型说明语句char a; int b; float c; double d; 则表达式a*bd-c的结果类型为( )。 A.FloatB.charC.intD.double

考题 若有以下定义: char a: int b; float c; double d; 则表达式a*b+d c的值的类型为 ______。A.floatB.intC.charD.double

考题 若有以下定义:char a;int b;float c;double d;则表达式“a*b+d-c”值的类型为( )。A.floatB.intC.charD.double

考题 自定义类型转换是由按优先关系从低级数据转换为高级数据,优先次序为( )。A.char-int long-folat-doubleB.int-Iong-float-double-charC.long-float-int-double-charD.以上都不对

考题 C语言中各种基本数据类型的存储空间长度排列为( )A.char≤long≤int≤float≤doubleB.double≤float≤long≤int≤charC.char≤int≤long≤float≤doubleD.float≤int≤long≤char≤double

考题 若有以下定义char a;int b;float c;double d;则表达式a*b+d-c值的类型为

考题 自动类型转换是按优先关系从低级数据转换成高级数据,规定的优先次序是( )。A.byte, short, char→int→long→float→doubleB.float→int→long→byte, short, char→doubleC.int→long→float→double→byte, short, charD.double→int→float→long→byte, short, char

考题 现有定义int a;double b;float c;char k;,则表达式a/b+c-k值的类型为A.intB.doubleC.floatD.char

考题 若有以下定义: char a;int b; float c;double d; 则表达式a*b+b-c值的类型为( )。A. floatSX 若有以下定义: char a;int b; float c;double d; 则表达式a*b+b-c值的类型为( )。A. floatB.intC.charD.double

考题 switch(c) 语句中c可以是int, long, char, float, unsigned int 类型。( )

考题 设有定义nit a:float f; double int i,则表达式10+'a'+i+f值的数据类型是( )A.intB.floatC.doubleD.不确定

考题 设有定义:char c;float f;int i;unsignedu;double d;下列各表达式的类型分别是()1.u+92.d!=f&&(i+2)3.8.2*i+c A.1.unsigned,2.int,3.doubleB.1.double,2.double,3.doubleC.1.int,2.double,3.charD.1.unsigned,2.double,3.int

考题 自动类型转换规定的优先次序是( )。A.short,byte,char→long→int→float→doubleB.short,byte,char→int→long―float→doubleC.byte,short,char→long→int→float→doubleD.byte,short,char→int→long→float→double

考题 若有以下定义:char a;int b;float c;double d;则表达式a*b+d-c值的类型为( )。A.A. float SXB 若有以下定义:char a;int b;float c;double d;则表达式a*b+d-c值的类型为( )。A.A. floatB.intC.charD.double

考题 若有byte b=6;char c='c';则表达式b+c的值的类型是()。A.intB.byteC.charD.float

考题 自动类型转换是按优先关系从低级数据转换成高级数据,规定的优先次序是( )。A.byte,short,char→int→long→float→doubleB.float→int→long→byte,short,char→doubleC.int→long→float→double←byte,short,charD.double→int→folat→long→byte,short,char

考题 设有定义:char c;float f;int i;unsignedu;double d;下列各表达式的类型分别是()1.u+92.d!=f(i+2)3.8.2*i+cA、1.unsigned,2.int,3.doubleB、1.double,2.double,3.doubleC、1.int,2.double,3.charD、1.unsigned,2.double,3.int

考题 若有说明:char w; int x; float y; double z; 则表达式w*x+y-z的值的数据类型是()。A、doubleB、charC、intD、float

考题 设有说明:char w;int x;float y;double z;则表达式w*x+z-y 值的数据类型为().A、floatB、charC、intD、double

考题 假定变量x,f和d的类型分别为int 、float和double。下面表达式的值总是为1的是()A、x==(int)(float)xB、d==(double)(float)dC、f==(float)(double)fD、(f+d)-f==d

考题 在Java语言中,已知a为int型,b为double型,c为float型,d为char型,则表达式a+bc-d/a的结果类型为()。A、intB、doubleC、floatD、char

考题 若有byteb=6;charc=’c’;则表达式b+c的值的类型是()A、intB、byteC、charD、float

考题 下列选项中,按照箭头方向,需要进行强制类型转换的是()。A、double←floatB、float←longC、int←charD、char←byte

考题 单选题假定变量x,f和d的类型分别为int 、float和double。下面表达式的值总是为1的是()A x==(int)(float)xB d==(double)(float)dC f==(float)(double)fD (f+d)-f==d