C++按由小到大的顺序输出三个数

【问题描述】在main函数中输入三个整数,并调用函数fun1实现在fun1中按由小到大的顺序输出这三个数。
【输入形式】输入三个数
【输出形式】输出排序后的三个数
【样例输入】3 6 -1
【样例输出】 please input three number:

       the result after sorting is -1 3 6 

//按由小到大的顺序输出三个数
#include
using namespace std;
void fun1(int a,int b,int c)
{
	int *a1=&a,*b1=&b,*c1=&c;
	int t=0;
	if(*a1>*b1)
	{
	    t=*a1;*a1=*b1;*b1=t;
    }
    if(*a1>*c1)
	{
	    t=*a1;*a1=*c1;*c1=t;
    }
    if(*b1>*c1)
	{
	    t=*b1;*b1=*c1;*c1=t;
    }//三个数排序完成
    cout<<*a1<<" "<<*b1<<" "<<*c1<>a>>b>>c;
	cout<<"the result after sorting is ";
	fun1(a,b,c);
	return 0;
}

你可能感兴趣的:(C++,c++,开发语言,指针)