c++程序 排列三个数 时间:2017-05-20 14:31:16 【文件属性】: 文件名称:c++程序 排列三个数 文件大小:324B 文件格式:H 更新时间:2017-05-20 14:31:16 排列 #include using namespace std; void res(int &x,int &y,int &z) { int temp; if(x>y) { temp=y;y=x;x=temp; }; if(x>z) {temp=z;z=x;x=temp;} if(y>z) {temp=y;y=z;z=temp;} } void main() { int a,b,c; cout<<"输入三个数字"<>a>>b>>c; res(a,b,c); cout< 立即下载