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

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

如有inta=11,则表达式(a++*1/3)的值是()。

  • A、0
  • B、3
  • C、4
  • D、12

参考答案

更多 “如有inta=11,则表达式(a++*1/3)的值是()。A、0B、3C、4D、12” 相关考题
考题 若有形参定义:inta[10];则a++是合法的表达式。() 此题为判断题(对,错)。

考题 若有定义语句: int a=5; ,则表达式: a++ 的值是 【 6 】 。

考题 若有定义语句:inta=3,b=2,c=1;,则表达式b<b?a:b的值是______。

考题 main {inta,b; for (a=1,b=1;a=100;a++) { if(b=20) break; if(b%3==1) {b+=3; continue; } b-=5; } } 程序的输出结果a的值为__________。

考题 若有定义inta=12;则表达式a+=a-=a*=a的值是-144。()

考题 若有定义inta=1,b=2;则表达式(a++)+(++b)的值是() A、3B、4C、5D、6

考题 设inta =1,b=2;,则(a++)+b和a+++b这两个表达式的值分别为A.3,3B.3,4C.4,3D.4,4

考题 如有inta=11;则表达式(a/1)的值是()。A.0B.3C.4D.11

考题 如有inta=11;则表达式(a++*1/3)的值是()。A.0B.3C.4D.12

考题 若已定义inta,则表达式a=10,a+10,a++的值是()。A.20B.10C.21D.11

考题 若有定义:inta[3][3];则表达式&a[2][1]-a的值为() A.7B.8C.6D.9

考题 若有定义“inta=5,b=7;”,则表达式a%=(b%2)运算后,a的值为( )。A.0B.1C.11SX 若有定义“inta=5,b=7;”,则表达式a%=(b%2)运算后,a的值为( )。A.0B.1C.11D.3

考题 若有定义:inta;且表达式!a的值为0,则表达式()的值为1。A.!(a0)B.a!=0C.a==0D.a=0

考题 若有定义:inta[3][3];则表达式a[2][1]-a的值为()A、7B、8C、6D、9

考题 若有以下定义和语句,此处表达式a++的值是() inta=5a++;A、7B、6C、5D、4

考题 定义变量inta=6,则a++的值是()。A、7B、6C、5D、4

考题 已知:inta[]={2,4,6,8};则:表达式(a[0]+=a[1])+++a[2]值为()。

考题 若有定义int a=5,b=7;则表达式(a++)+(++b)的值是()。A、11B、12C、13D、14

考题 设有定义:inta[3][4]={{1,2,5,3},{2,4,7,9},{3,6,5,8}};,则表达式a[1][2]+a[2][3]的值9。

考题 数组定义为“inta[4];”,表达式()是错误的。A、*aB、a[0]C、aD、a++

考题 已知inta=3,b=5;那么b-2==a表达式的结果值是1

考题 单选题定义变量inta=6,则a++的值是()。A 7B 6C 5D 4

考题 单选题若有定义:inta[3][3];则表达式a[2][1]-a的值为()A 7B 8C 6D 9

考题 单选题若有定义int a=5,b=7;则表达式(a++)+(++b)的值是()。A 11B 12C 13D 14

考题 单选题若有定义:int a=0,b=0,c=0,d=0; 有C语言表达式 (a++ b++)? c++ : d++,以下关于其执行顺序的叙述正确是(  )。A 先执行a++,表达式a++的值为0,由此即可确定(a++ b++)值为0,因此执行d++B 先执行a++,表达式a++的值为0;再执行b++,表达式b++的值为0,由此可确定(a++ b++)值为0,因此执行d++C 先执行a++,表达式a++的值为1;再执行b++,表达式b++的值为1,由此可确定(a++ b++)值为1,因此执行c++D 先执行b++,表达式b++的值为1;再执行a++,表达式a++的值为1,由此可确定(a++ b++)值为1,因此执行c++

考题 单选题如有inta=11,则表达式(a++*1/3)的值是()。A 0B 3C 4D 12

考题 填空题已知:inta[]={2,4,6,8};则:表达式(a[0]+=a[1])+++a[2]值为()。