参数传值与传地址
#include<iostream>#include<algorithm>#include<fstream>#include<vector>#include&a
·
#include<iostream>
#include<algorithm>
#include<fstream>
#include<vector>
#include<map>
#include<string>
using namespace std;
void get(int a,int &b){
a=384;
b=54;
}
int main(){
int x=5,y=23;
get(x,y);
cout << x << " " << y;
return 0;
//c++ vs2008
}
5 54
更多推荐
已为社区贡献1条内容
所有评论(0)