#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
250

被折叠的 条评论
为什么被折叠?



