求助萌新
查看原帖
求助萌新
500553
huawei1314楼主2021/4/10 11:27
#include<iostream>
using namespace std;
int main(){
	int a,b,c,temp;
	cin>>a>>b>>c;
	
	if(a>b)
	{temp=a;
	a=b;
	b=temp;
}
	if(b>c)
	{	temp=b;
	b=c;
	c=temp;
	}
cout<<a <<b <<c ;
return 0;	
	
}
2021/4/10 11:27
加载中...