• 2022-10-31 问题

    已知swap函数模板的定义如下: template[typenameT] voidswap(T&var1,T&var2) { Ttemp=var1; var1=var2; var2=temp; } 可使用以下哪种方式调用swap?___________ A: A.intv1=1;intv2=2;swap(v1,v2); B: B.swap(1,2); C: C.intv1=1;intv2=2;swap(&v1,&v2); D: D.intv1=1;doublev2=2;swap(v1,v2);

    已知swap函数模板的定义如下: template[typenameT] voidswap(T&var1,T&var2) { Ttemp=var1; var1=var2; var2=temp; } 可使用以下哪种方式调用swap?___________ A: A.intv1=1;intv2=2;swap(v1,v2); B: B.swap(1,2); C: C.intv1=1;intv2=2;swap(&v1,&v2); D: D.intv1=1;doublev2=2;swap(v1,v2);

  • 2022-06-11 问题

    If you define the swap function as follows:[br][/br]template [typename T][br][/br]void Swap(T &var1, T &var2) {[br][/br] T temp = var1;[br][/br] var1 = var2;[br][/br] var2 = temp;[br][/br]}[br][/br]You can invoke Swap using ______. A: Swap(1, 2) B: int v1 = 1, v2 = 2; Swap(v1, v2); C: int v1 = 1, v2 = 2; Swap(&v1, &v2); D: int v1 = 1; double v2 = 2; Swap(v1, v2);

    If you define the swap function as follows:[br][/br]template [typename T][br][/br]void Swap(T &var1, T &var2) {[br][/br] T temp = var1;[br][/br] var1 = var2;[br][/br] var2 = temp;[br][/br]}[br][/br]You can invoke Swap using ______. A: Swap(1, 2) B: int v1 = 1, v2 = 2; Swap(v1, v2); C: int v1 = 1, v2 = 2; Swap(&v1, &v2); D: int v1 = 1; double v2 = 2; Swap(v1, v2);

  • 2021-04-14 问题

    The underlined phrase swap meets in Paragraph 1 is closest in meaning to ______________.

    The underlined phrase swap meets in Paragraph 1 is closest in meaning to ______________.

  • 2021-04-14 问题

    下面程序的运行结果为。 def swap(list): temp=list[0] list[0]=list[1] list[1]=temp list=[1,2] swap(list) print(list)

    下面程序的运行结果为。 def swap(list): temp=list[0] list[0]=list[1] list[1]=temp list=[1,2] swap(list) print(list)

  • 2021-04-14 问题

    有以下程序 void swap1(int c[]) { int t; t=c[0];c[0]=c[1];c[1]=t; } void swap2(int c0,int c1) {int t; t=c0;c0=c1;c1=t; } main() {int a[2]={3,5},b[2]={3,5}; swap1(a); swap2(b[0],b[1]); printf(“%d %d %d %d ”,a[0],a[1],b[0],b[1]); } 执行后输出的结果是:

    有以下程序 void swap1(int c[]) { int t; t=c[0];c[0]=c[1];c[1]=t; } void swap2(int c0,int c1) {int t; t=c0;c0=c1;c1=t; } main() {int a[2]={3,5},b[2]={3,5}; swap1(a); swap2(b[0],b[1]); printf(“%d %d %d %d ”,a[0],a[1],b[0],b[1]); } 执行后输出的结果是:

  • 2022-06-05 问题

    假设,交换分区文件为/swap/swapfile,大小为64M,则添加交换分区的步骤有( ) A: 创建一个空的swap文件<br/>dd if=/dev/zero of=/swap/swapfile bs=1024 count=65536 B: 格式化swap分区,文件变成swap格式<br/>mkswap /swap/swapfile C: 激活swap分区,启用这个swap文件<br/>swapon /swap/swapfile D: 配置swap文件信息,即在/etc/fstab文件中最后一行输入<br/>/swap/swapfile swap swap default 0 0

    假设,交换分区文件为/swap/swapfile,大小为64M,则添加交换分区的步骤有( ) A: 创建一个空的swap文件<br/>dd if=/dev/zero of=/swap/swapfile bs=1024 count=65536 B: 格式化swap分区,文件变成swap格式<br/>mkswap /swap/swapfile C: 激活swap分区,启用这个swap文件<br/>swapon /swap/swapfile D: 配置swap文件信息,即在/etc/fstab文件中最后一行输入<br/>/swap/swapfile swap swap default 0 0

  • 2022-06-09 问题

    下列程序的输出结果是:​x = 1 y = 2 def swap(a, b): t = a a = b b = t print a, b swap(x, y) print x, y​‌​ A: 1 21 2 B: 2 11 2 C: 1 22 1 D: 2 12 1

    下列程序的输出结果是:​x = 1 y = 2 def swap(a, b): t = a a = b b = t print a, b swap(x, y) print x, y​‌​ A: 1 21 2 B: 2 11 2 C: 1 22 1 D: 2 12 1

  • 2021-04-14 问题

    中国大学MOOC: 下面程序执行后的输出结果是:#include <iostream>using namespace std;void swap1(int c[]){int t;t=c[0];c[0]=c[1];c[1]=t;}void swap2(int c0,int c1){int t;t=c0;c0=c1;c1=t;}int main( ){int a[2]={3,5},b[2]={3,5};swap1(a) ; swap2(b[0],b[1]);cout<<a[0] <<a[1] <<b[0] <<b[1];return 0;}

    中国大学MOOC: 下面程序执行后的输出结果是:#include <iostream>using namespace std;void swap1(int c[]){int t;t=c[0];c[0]=c[1];c[1]=t;}void swap2(int c0,int c1){int t;t=c0;c0=c1;c1=t;}int main( ){int a[2]={3,5},b[2]={3,5};swap1(a) ; swap2(b[0],b[1]);cout<<a[0] <<a[1] <<b[0] <<b[1];return 0;}

  • 2022-06-12 问题

    以下程序的输出结果是( )。main(){ int x=1,y=2; void swap(int x,int y); swap(x,y); printf("x=%d,y=%d\n",x,y);}void swap(int x,int y){ x=3,y=4;} A: x=3,y=4 B: x=1,y=2 C: x=3 y=4 D: x=1 y=2

    以下程序的输出结果是( )。main(){ int x=1,y=2; void swap(int x,int y); swap(x,y); printf("x=%d,y=%d\n",x,y);}void swap(int x,int y){ x=3,y=4;} A: x=3,y=4 B: x=1,y=2 C: x=3 y=4 D: x=1 y=2

  • 2022-06-19 问题

    下列指令是加1指令的是( )。 A: DEC B: INC C: PUSH D: SWAP

    下列指令是加1指令的是( )。 A: DEC B: INC C: PUSH D: SWAP

  • 1 2 3 4 5 6 7 8 9 10