【单选题】【消耗次数:1】
if条件表达式的值必须是( )类型。
boolean
int
double
参考答案:
复制
纠错
相关题目
【单选题】 表达式(int)((double)9/2)-(9)%2的值是()
①  0
②  3
③  4
④  5
【单选题】 设变量a是int型,f是float型,i是double型,则表达式5+′a′+i*f值的数据类型为( )
①  int
②  float
③  double
④  不确定
【单选题】 设有说明:char w;int x;float y;double z;则表达式w*x+z-y 值的数据类型为().
①  float
②  char
③  int
④  double
【单选题】 如果int a=3,b=4;则条件表达式“a<b? a:b”的值是()。
①  3
②  4
③  0
④  1
【单选题】 设int a =5,b =7;则条件表达式8<4?a :b 的值为()
①  0
②  1
③  5
④  7
【单选题】 设int a =-12,b =5;则条件表达式a <b ?a+2:b 的值为()
①  1
②  0
③  -10
④  5
【单选题】 若已定义x和y为double类型,则表达式x=1,y=x+3/2的值是
①  1
②  2
③  2.0
④  2.5
【单选题】 设 int x=0, y=1; 表达式(x||y)的值是 ( )
①  0
②  1
③  2
④  -1
【单选题】 表达式25\3mod3.2*int(2.5)的值为()。
①  1
②  2
③  3
④  5
【单选题】 若A是数值类型,则逻辑表达式(a==1)||(a!=1)的值是。
①  1
②  0
③  2
④  不知道a的值,不能确定
随机题目
【多选题】 阅读下面的HTML代码,则下列选项中增加的样式可以使两个DIV不在同一行显示的有(????)style?type=text/css? div?{?float:right;?}?/style ?......? div?class=box1/div? div?class=box2/div ?......
①  .box2{clear:left;}
②  .box2{clear:both;}
③  .box1{clear:right;}
④  .box2{clear:right;}
【单选题】 如何设置英文首字母大写?( )
①  text-transform:uppercase
②  text-transform:capitalize
③  样式表做不到
④  text-decoration:none
【单选题】 下列( )表示上边框线宽10px,下边框线宽5px,左边框线宽20px,右边框线宽1px。
①  border-width:10px 1px 5px 20px
②  border-width:10px 5px 20px 1px
③  border-width:5px 20px 10px 1px
④  border-width:10px 20px 5px 1px
【单选题】 关于class和id使用方法,正确的是( )
①  同一个元素可以使用多个class,但id不行。
②  class有缺省的浏览器参数,id没有
③  同一个元素可以使用多个id,但class不行。
④  id有缺省的浏览器参数,class没有
【单选题】 下列( )表示p元素中的字体是粗体。
①  p{text-size:bold}
②  p{font-weight:bold}
③  p style=text-size:bold
④  p style=font-size:bold
【单选题】 下列哪段代码能够定义所有P标签内文字加粗?(??)
①  p style=text-size:bold
②  p style=font-size:bold
③  p{text-size:bold}
④  p{font-weight:bold}
【单选题】 下列( )表示列表项符号是小方块。
①  list-style-type:square
②  type:square
③  list-type:square
④  type:2
【单选题】 下列样式定义字体间距为0.5倍间距、水平左对齐、垂直顶端对齐、有下划线,正确的定义是:( )
①  p{text-decoration:underline;letter-spacing:0.5em;vertical-align:top;text-align:left;}
②  p{text-decoration:0.5em;letter-spacing:underline;vertical-align:top;text-align:left;}
③  p{text-decoration:left;letter-spacing:top;vertical-align:0.5em;text-align:underline;}
④  p{text-decoration:underline;letter-spacing:0.5em;vertical-align:left;text-align:top;}
【单选题】 下面说法不正确的是( )
①  CSS2中没有选择器,CSS3才有选择器
②  表示颜色是“rgba”中a指的是不透明度;
③  文字阴影“text-shadow”是CSS2中原有的元素属性
④  给元素的边框设定图片使用的是Border-image属性
【单选题】 下面不属于CSS插入形式的是(?????)
①  索引式
②  内联式
③  嵌入式
④  外部式