有程序:INTEGERB(3,3)DATAB/3*2,3*3,3*4/DO10I=1,310WRITE(*,‘(1X,3I2)’)(B(I,J),J=1,3)END此程序的运行结果是:()A、2;2;2;3;3;3;4;4;4B、2;3;4;2;3;4;2;3;4C、3;3;3;3;3;3;3;3;3D、4;3;2;4;3;2;4;3;2
有程序:INTEGERB(3,3)DATAB/3*2,3*3,3*4/DO10I=1,310WRITE(*,‘(1X,3I2)’)(B(I,J),J=1,3)END此程序的运行结果是:()
- A、2;2;2;3;3;3;4;4;4
- B、2;3;4;2;3;4;2;3;4
- C、3;3;3;3;3;3;3;3;3
- D、4;3;2;4;3;2;4;3;2
相关考题:
设集合A={1,2,3},下列关系中不是等价关系的为______。A.R1={,,}B.R2={, 设集合A={1,2,3},下列关系中不是等价关系的为______。A.R1={<1,1>,<2,2>,<3,3>}B.R2={<1,1>,<2,2>,<3,3>,<2,3>,<3,2>,}C.R3={<1,1>,<2,2>,<3,3>,<1,2>}D.R4={<1,1>,<2,2>,<3,3>,<1,2>,<1,3>,<3,1>,<2,3>,<3,2>,}
下面程序的运行结果为#includevoid swap(int a,int b{int temp;temp=a++;a=b;b=temp;}void main(){int a=2,b=3;swap(a,b):cout }A.2,3B.3,2C.2,2D.3,3
下面程序的运行结果为( )。#includeiostream.h voidswap(int&a,intb) { inttemp; temp=a++; a=b: b=temp: } voidmain() { inta=2,b=3; swap(a,b); couta","bendl; }A.2,3B.3,2C.2,2D.3,3
下面程序的运行结果为( )。#includeiostream.hvoidswap(int&a,intb){int temp;temp=a++;a=b:b=temp:}voidmain(){inta=2,b=3;swap(a,b);couta,bendl;}A.2,3B.3,2C.2,2D.3,3A.2,3B..3,2C.2,2D.3,3
有以下程序#includestdio.hint f(int m){ static int n=0;n+=m:return n;}main(){ int n=0;printf("%d,",f(++n));printf("%d\n",f(n++));}程序运行后的输出结果是A.1,2B.1,1C.2,3D.3,3
下面程序的运行结果为( )。 include using namespace std; void swap(int a,int b){ int temp; temp=a; a=b; b=temp; } void main(){ int a=2,b=3; swap(a,b); cout<<a<<"," <<b<<ENDL; }A.2,3B.3,2C.2,2D.3,3
试题33有以下程序#include stdio.hint f(int m){ static int n=0;n+=m;return n;}main(){ int n=0;printf(“%d,”, f(++n));printf(“%d\n”, f(n++));}程序运行后的输出结果是()A.1,2B.1,1C.2,3D.3,3
单选题有程序:INTEGERB(3,3)DATAB/3*2,3*3,3*4/DO10I=1,310WRITE(*,‘(1X,3I2)’)(B(I,J),J=1,3)END此程序的运行结果是:()A2;2;2;3;3;3;4;4;4B2;3;4;2;3;4;2;3;4C3;3;3;3;3;3;3;3;3D4;3;2;4;3;2;4;3;2
单选题有如下一个程序段,执行后,其显示的结果是( ). DIMENSION ARRAY[3,3] ? AELEMENT(ARRAY ,2,3)A1B5C6D3