-->
当前位置:首页 > 题库

题库 第5947页

  • 最新
  • 浏览
  • 评论

单选题:Supposing `int a[3]; ` Which one is invalid to specify an item

Luz5年前 (2021-05-10)1455
Supposing `int a[3]; ` Which one is invalid to specify an item of array a? @[D](2)A. a[0]B. a[1*2]C. a[4-2]D. a[3]A.a[…

单选题:Which statement can initialize a one-dimensional array?

Luz5年前 (2021-05-10)695
Which statement can initialize a one-dimensional array? @[C](2)A. int a[10]=(0,0,0,0,0);B. int a[2]={0,1,2};C. int a[]…

单选题:Which line is NOT correct?

Luz5年前 (2021-05-10)748
Which line is NOT correct? @[B](2)```1. main()2. {3. int i;4. int a[3]={1};5. scanf("%d",&a);6. for(i=1;i˂3;i++) a[0]=…

单选题:According to the statement `int a[3][2]={1, 2, 3, 4, 5, 6} ;` ,

Luz5年前 (2021-05-10)713
According to the statement `int a[3][2]={1, 2, 3, 4, 5, 6} ;` , which element evaluates 6? @[B](2)A. a[3][2]B. a[2][1…

单选题:Which declaration of the two-dimensional array is valid?

Luz5年前 (2021-05-10)599
Which declaration of the two-dimensional array is valid? @[C](2)A. int a[3][];B. float a(3,4);C. double a[1][4];D. flo…

单选题:The output of the following program is ( ).

Luz5年前 (2021-05-10)796
The output of the following program is ( ). @[C](2)```fun(int x, int y, int z){z=x*x+y*y; }main( ) {int a=31;fun(5…

单选题:According to the following function fun definition,

Luz5年前 (2021-05-10)674
According to the following function fun definition, `void fun(int n, double x) { …… }`which one is the correct callin…

单选题:According to the statement `int a[][3]={1,2,3,4,5,6,7};`,The siz

Luz5年前 (2021-05-10)734
According to the statement `int a[][3]={1,2,3,4,5,6,7};`,The size of the first dimension of the array a is ( )。@[B](2)…

单选题:The output of this program is ( ).

Luz5年前 (2021-05-10)719
The output of this program is ( ). @[D](2)```int func(int a,int b){return (a+b);} main( ) {int x=2,y=5,z=8,r…

单选题:以下不适合出现在摘要中的内容是

Luz5年前 (2021-05-10)674
以下不适合出现在摘要中的内容是 @[C](1)A. 遇到的问题B. 提出的方案C. 大量的背景介绍D. 项目的成效A.遇到的问题B.提出的方案C.大量的背景介绍D.项目的成效答案:C…