题目详情
当前位置:首页 > 职业培训考试
题目详情:
发布时间:2023-10-31 22:43:00

[单项选择]以下程序运行后的输出结果是
void swap(int x,int y)
int t;
t=x;x=y;y=t;

main( )
int a=15,b=16;
swap(a,b);printf(“%d%d”,a,b);

A. 15,16
B. 16,15
C. 15,15
D. 16,16

更多"以下程序运行后的输出结果是 void swap(int x,int "的相关试题:

[单项选择]以下程序运行后的输出结果是
void swap(int x, int y)
int t;
t=x;x=y;y=t;

main( )
int a=15, b=16;
swap(a, b); printf("% d % d", a, b);

A. 15, 16
B. 16, 15
C. 15, 15
D. 16, 16
[填空题]以下程序运行后的输出结果是【 】。 void swap(int x,int y) { int t; t=x;x=y;y=t;printf("%d%d",x,y); } main( ) { int a=3,b=4; swap(a,b);pintf(("%d%d",a,b); }
[填空题]以下程序运行后的输出结果是 【13】 。 void swap(int x,int y) { int t; t=x;x=y;y=t;printf("%d%d",x,y); } main( ) { int a=3,b=4; swap(a,b);pintf(("%d%d",a,b); }
[填空题]

以下程序运行后的输出结果是_________。
void swap(int x,int y)
{ int t;
t=x;x=y;y=t;printf("%d %d ",x,y);
}
main( )
{ int a=3,b=4;
swap(a,b); printf("%d %d",a,b);
}


[单项选择]

有以下程序的输出结果是() 
 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/n”,a[0],a[1],b[0],b[1]); 
}


A. 5 3 5 3
B. 5 3 3 5
C. 3 5 3 5
D. 3 5 5 3
[单项选择]以下程序的输出结果是( )。
#include <stdio.h>
void swap(int*a, int *b)
int*t;
t=a; a=b; b=t;

main( )
int i=3, j=5, *p=&i, *q=&j;
swap(p, q); printf(1%d %d/n, *p, *q);

A. 23
B. 34
C. 35
D. 45
[简答题]请编写函数void swap(int *px,int *py)与void swap(int &px,int &PY),实现主程序中变量a和b值的交换。
输出结果如下:
3 2
2 3
注意:部分源程序已存在文件test5_2.cpp中。
请勿修改主函数main和其他函数中的任何内容,仅在函数相应的花括号中填写若干语句。
文件test5_2.cpp的内容如下:
#include<iostream.h>
void swap(int *px,int *py)

/***1***/

void swap(int &px,int &PY)

/***2**/

void main( )

int a=2,b=3;
swap(a,b);
cout<<a<<" "<<b<<endl;
swap(&a,&b);
cout<<a<<" "<<b<<endl;

[填空题]下列程序的输出结果是
#include <stdio.h>
void swap(int *a, int *B)

int *t;
t=a;a=b;b=t;

main( )

int i=3,j=5,*p=&i,*q=&j;
swap(p,q);printf("%d %d//n",*p,*q);

[填空题]

下面程序和运行运行结果是 【18】 
  void swap(int * a,int * b)
  { int * t;
   t=a; a=b; b=t;
  }
  main( )
  { intx=3,y=5,* p=&x,* q=&y;
   swap(p,q);
   prinff("%d %d/n", *p, *q);}


[单项选择]有以下程序:
void swap(int *p,int q)
int t=0;
t=*p;p=&q;q=t;
void
main( )
int a=7,b=8,*p,*q,*r;
p=&a;q=&b;
r=p; p=q;q=r;
swap(q,b);
printf("%d,%d,%d,%d/n",*p,*q,a,b);

程序运行后输出的结果是( )。
A. 8,7,8,7
B. 7,8,7,8
C. 8,7,7,8
D. 7,8,8,7
[单项选择]有以下程序:
void swap1(int * a,int * b)
int* c=a;
a=b,b=c;

void swap2(int * a,int * b)

int c=* a;
* a=*b,*b=c;

main( )
int a=10,b=15;
swap 1(&a,&b) ;
printf("%d,%d,",a,b) ;
a=10,b=15;
swap 2(&a,&b) ;
printf("%d,%d",a,b) ;

其输出结果为 ()。
A. 15,10,10,15
B. 15,10,15,10
C. 10,15,10,15
D. 10,15,15,10
[单项选择]有以下程序: void swap1(int c0[],int c1[]) { int t; t=c0[0]; c0[0]=c1[0]; c1[0]=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,a+1); swap2(&b[0],&b[1]); printf("%d %d %d %d/n",a[0],a[1],b[0],b[1]); } 程序运行后的输出结果是______。
A. 3 5 5 3
B. 5 3 3 5
C. 3 5 3 5
D. 5 3 5 3
[单项选择]有以下程序:
void swap1(int *a,int *b)
int *c=a;
a=b,b=c;

void swap2(int *a,int *b)

int c=*a;
*a=*b,*b=c;

main( )
int a=10,b=15;
swap1(&a,&b);
printf("%d,%d,",a,b);
a=10,b=15;
swap2(&a,&b);
printf("%d,%d,",a,b);

其输出结果为( )。
A. 15,10,10,15
B. 15,10,15,10
C. 10,15,10,15
D. 10,15,15,10
[单项选择]有以下程序:
void swap1(int c0[],int c1[])
int t;
t=c0[0]; c0[0]=c1[0]; c1[0]=t;

void swap2(int *c0,int *c1)
int t;
t=*c0; *c0=*c1; *c1=t:

void main( )
int a[2]=3,5),b[2]=3,5;
swap1(a,a-1); swap2(&b[0],&b[1]);
printf("%d %d %d %d/n",a[0],a[1],b[0],b[1]);

程序运行后输出的结果是( )。
A. 5 5 3 3
B. 5 3 3 5
C. 3 5 3 5
D. 5 3 5 3
[填空题]以下程序的输出结果是______。
#include <stdio.h>
void swap(int *a, int *b)
int *t;
t=a;a=b;b=t;

main( )
int i=3,j=5,*p=&i,*q=&j;
swap(p,q); printf("%d %d/n",*p,*q);

[单项选择]

有以下程序
void swap1(int c0[], int c1[])
int t;
 t=c0[0]; c0[0]=c1[0]; c1[0]=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, a+1); swap2(&b[0], &b[1]);
 printf("%d %d %d %d/n",a[0],a[1],b[0],b[1]);程序运行后的输出结果是()


A. 3 5 5 3
B. 5 3 3 5
C. 3 5 3 5
D. 5 3 5 3
[单项选择]有以下程序:
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);
swapl(
A. ; swap2(b[0],b[1]);

我来回答:

购买搜题卡查看答案
[会员特权] 开通VIP, 查看 全部题目答案
[会员特权] 享免全部广告特权
推荐91天
¥36.8
¥80元
31天
¥20.8
¥40元
365天
¥88.8
¥188元
请选择支付方式
  • 微信支付
  • 支付宝支付
点击支付即表示同意并接受了《购买须知》
立即支付 系统将自动为您注册账号
请使用微信扫码支付

订单号:

请不要关闭本页面,支付完成后请点击【支付完成】按钮
恭喜您,购买搜题卡成功
重要提示:请拍照或截图保存账号密码!
我要搜题网官网:https://www.woyaosouti.com
我已记住账号密码