logo - 刷刷题
下载APP
【单选题】

下列程序段的输出结果是
#include<iostream.h>
void fun(int*x,int*y)
cout<<*x<<*y;
*x=3;
*y=4;

void main( )
int x=1,y=2;
fun(&y,&x);
cout<<x<<y<<endl;

A.
2143
B.
1212
C.
1234
D.
2112
题目标签:输出程序段
举报
参考答案:
参考解析:
.
刷刷题刷刷变学霸
举一反三