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

题目内容 (请给出正确答案)
单选题
将int型变量n转换成float型变量的方法是()。
A

floatn

B

(float)n

C

float(n)

D

21个字符


参考答案

参考解析
解析: 暂无解析
更多 “单选题将int型变量n转换成float型变量的方法是()。A floatnB (float)nC float(n)D 21个字符” 相关考题
考题 设变量a是int型,f是float型,i是double型,则表达式10+′a′+i*f值的数据类型为A.intB.floatC.doubleD.不确定

考题 下列关于单目运算符++、--的叙述中正确的是A.它们的运算对象可以是任何变量和常量B.它们的运算对象可以是char型变量和int型变量,但不能是float型变量C.它们的运算对象可以是int型变量,但不能是double型变量和float型变量D.它们的运算对象可以是char型变量、int型变量和float型变量

考题 以下对结构体类型变量的定义中,不正确的是______。A.typedef struct aa { int n; float m; }AA; AA td1;B.#define AA struct aa AA {int n; float m; }td1;C.struct {int n; float m; }aa; srtuct aa td1:D.struct {int n; float m; }tdl;

考题 设int型变量a、b,float型变量x、y,char型变量ch均已正确定义并赋值,正确的switch语句是_________。 A.switch(ch+1){......}B.switch(a+b){......}C.switch(x+y){......}D.switchch{......}

考题 设变量a是int型,f是float型,i是double型,则表达式10+'a'+i*f的值的数据类型为( )。A.intB.floatC.doubleD.不确定

考题 设变量a是 int 型,f是 double 型,i是 float 型,则表达式10+'a'+i*f值的数据类型A.intB.floatC.doubleD.不确定

考题 设变量a是int型,f是double型,i是float型,则表达式10+'a'+i * f值的数据类型是A.intB.floatC.doubleD.不确定

考题 以下对结构体类型变量的定义中,不正确的是( )A.typedef struct aa { int n; float m; }AA; AA tdl;B.#define AA struct aa AA{ int n; float m; }tdl;C.struct { int n; float m; }aa; struct aa tdl;D.struct { int n; float m, }tdl;

考题 设变量a是int型,f是int型,i是double型,则表达式10+a+i*f值的数据类型为A.int B.float C.double D.不确定

考题 以下对结构体类型变量td的定义中,错误的是 ______。A.typedef struct aaB.struct aa {int n; {int n; float m; float m; }AA; }td; AAtd; struct aa td;C.structD.struct {int n; {int n; float m; float m; }aa; }td; struct aa td;

考题 设q1和q2是指向一个int型一维数组的指针变量,k为float型变量,下列不能正确执行的语句是( )。

考题 设i是int型变量,f是float型变量,用下面的语句给这两个变量输入值:( )

考题 以下对结构体类型变量的定义中,不正确的是_______。A.typedef struct aa { int n; float m; }aa; aa td1;B.#define aa struct aa aa{ int n; float m; }td1;C.struct { int n; float m; }aa; struct aa td1;D.struct { int n; float m; }td1;

考题 设变量a是int型,f是float型,i是double型,则表达式10+′a′+i*f值的数据类型为A.int B.float C.double D.不确定

考题 设int型变量a、b,float型变量x、y,char型变量ch均已正确定义并赋值,则正确的swith语句是( )。A.switch (x+y) {...}B.switch (ch+1) {...}C.switch ch {...}D.switck (a+b) {...}

考题 下列关于单目运算符++、--的叙述中,正确的是( )。A.它们的运算对象可以是任何变量和常量B.它们的运算对象可以是char型变量和血型变量,但不能是float型变量C.它们的运算对象可以是int型变量,但不能是doule型变量和float型变量D.它们的运算对象可以是char型变量、int型变量和float型变量

考题 关于类型转换的说法中,错误的是( )。A.如果a为血型变量,b为char型变量,则a+b的值为血型B.如果a为float型变量,b为int型变量,则a-b的值为float型C.如果a为double型变量,b为float型变量,则a*b的值为double型D.如果a为血型变量,b为血型变量,则a/(double)b的值为int型

考题 列关于单目运算符++、--的叙述中,( )是正确的。A.它们的运算对象可以是任何变量和常量B.它们的运算对象可以是char型变量和血型变量,但不能是float型变量C.它们的运算对象可以是血型变量,但不能是doule型变量和float型变量D.它们的运算对象可以是char型变量、int型变量和float型变量

考题 以下对结构体类型变量td的定义中,错误的是( )。A.typcdef struct aa { int n; float m; } AA; AA td;B.struct aa {int n; float m; } struct aa td;C.struct {int n; float m; } aa; struct aa td;D.struct {int n; float m; }td;

考题 变量W_data定义如下:union data_node{float ff'int n;char ch;}W_data;则变量W_data所占的内存存储空间可表示为______。A.sizeof(int) B.sizeof(char) C.sizeof(float) D.sizeof(int)+sizeof(char)+sizeof(float)

考题 设a为int变量,b为float变量,则a+b的运算结果为()型数据。

考题 定义一个双精度型变量num的语句是()A、int numB、double numC、float numD、boolean num

考题 将int型变量n转换成float型变量的方法是()。A、floatnB、(float)nC、float(n)D、21个字符

考题 多选题设int型变量a、b,float型变量x、y,char型变量ch均已正确定义并赋值,正确的switch语句是()。Aswitch(x+y){……}Bswitch(ch+1){……}Cswitch ch{……}Dswitch(a+b){……}

考题 单选题将数值型变量转换成字符型变量的函数是()A VALB STRC CHRD SGN

考题 单选题设x为float型变量,y为double型变量,a为int型变量,b为long型变量,c为char型变量,则表达式x+y*a/x+b/y+c的值为()类型。A intB longC doubleD char

考题 填空题设a为int变量,b为float变量,则a+b的运算结果为()型数据。