-->
当前位置:首页 > Eng > 正文内容

单选题:下列代码实现x和y值的交换,fun函数的参数应该为( )

Luz2年前 (2022-11-19)Eng599
下列代码实现x和y值的交换,fun函数的参数应该为( )
c++
void fun(......) {
int x = a;
a = b;
b = x;
}
int main() {
int x = 1, y = 2;
fun(x, y);
cout << x << ","<<y << endl;
return 0;
}




A.int a,int b
B.int& a, int& b
C.int* a, int* b
D.const int& a, const int& b


answer:B

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。