【单选题】
以下程序的运行结果是( )。 void fun(int array[3][3]) { int j; for(j=0;jj++) array[1][j]=array[1][j]++; printf(\n} void main(){ int j,a[3][3]={0,1,2,1,0,4,2,4,5};fun(a);for(j=0;jj++)printf(%d,a[1][j]); printf(\n }
【单选题】
设线性规划的约束条件为则基本可行解为()。
【单选题】
已知inta[4][4]={{1,2},{3},{4},{1,2,3}};问a[2][0]该元素的值是()
【单选题】
设 R={0,10,20,31,21,32,3},则关系R在{0,1}上的限制R?{0,1}等于:
【单选题】
若有定义:intx,a;赋值语句a=(x%3==0)?0:1;与()语句不等价。
④
if(!(x%3==0))a=1;elsea=0;
【简答题】
求方程组<img class="jc-formula" data-tex="\begin{ cases } x_{ 1 }-{ x }_{ 2 }-{ x }_{ 3 }+{ x }_{ 4 }=0 \\ { x }_{ 1 }-{ x }_{ 2 }+{ x }_{ 3 }-3{ x }_{ 4 }=0 \\ { x }_{ 1 }-{ x }_{ 2 }-2{ x }_{ 3 }+3{ x }_{ 4 }=0 \end{ cases }" src="https://huaweicloudobs.ahjxjy.cn/D4C08D0A4459C36BE868755327686B0E.png" style="vertical-align: middle;"/>的全部解。
【单选题】
以下程序的运行结果是()。intfun(inta[4][4]){inti;for(i=0;ii++)printf("%2d",a[i][2]);printf("\n");}main(){inta[4][4]={1,1,2,2,1,9,0,0,2,4,0,0,0,5,9,8};fun(a);}
【单选题】
有定义语句“int a[][3]={1, 2, 3, 4, 5, 6};”,则a[1][0]的值是____。
【单选题】
<img src=https://huaweicloudobs.ahjxjy.cn/6C09691F4A38CAA4AC0A3B5E895ED0A0.png title=1.png alt=1.png/>
①
<img src=https://huaweicloudobs.ahjxjy.cn/D41198B87CD879CD9DA01B900303E4A5.png title=1-1.png alt=1-1.png/>
②
<img src=https://huaweicloudobs.ahjxjy.cn/48D8700AA8EE91C9D151A718FE9B89B4.png title=1-2.png alt=1-2.png/>
③
<img src=https://huaweicloudobs.ahjxjy.cn/5FDDF9F3A3E992AA1D82908A550CF21E.png title=1-3.png alt=1-3.png/>
④
<img src=https://huaweicloudobs.ahjxjy.cn/AE636347E44696A2405EE63662654F74.png title=1-4.png alt=1-4.png/>
【单选题】
有以下程序,程序运行以后的输出结果是() #include stdio.h main( ) { int a[ ]={2,3,5,4},i; for(i=0;i switch(i%2) { case 0:switch(a[i]%2) {case 0:a[i]++;break; case 1:a[i]--; }break; case 1:a[i]=0; } for(i=0;i printf(\n); }