两个C++程序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两个C++程序相关的知识,希望对你有一定的参考价值。
#include<iostream>
using namespace std;
int main()
{void sort(int x,int y,int z);
int x,y,z;
cin>>x>>y>>z;
sort(x,y,z);
return 0;
}
void sort(int x,int y,int z)
{int temp;
if(x>y)
{temp=x;
x=y;
y=temp;
}
if(x<y)
cout<<z<<‘,‘<<x<<‘,‘<<y<<endl;
else if(z<x)
cout<<x<<‘,‘<<z<<‘,‘<<y<<‘,‘<<endl;
else if(z<y)
cout<<x<<‘,‘<<z<<‘,‘<<y<<‘,‘<<endl;
else
cout<<x<<‘,‘<<y<<‘,‘<<z<<‘,‘<<endl;
}
#include<iostream>
using namespace std;
int main()
{int a,b,c,temp;
cin>>a>>b>>c;
int &ra=a;
int &rb=b;
int &rc=c;
if(ra>rb)
{temp=ra;
ra=rb;
rb=temp;
}
if(ra>rc)
{temp=ra;
ra=rc;
rc=temp;
}
if(rb>rc)
{temp=rb;
rb=rc;
rc=temp;
}
cout<<a<<‘,‘<<b<<‘,‘<<c<<‘,‘<<endl;
return 0;
}
以上是关于两个C++程序的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Visual Studio 2005 在两个不同的 c++ 程序之间获取返回值