其他分享
首页 > 其他分享> > 分支结构-4

分支结构-4

作者:互联网

#include <iostream>
#include <algorithm>
#include <math.h>
using namespace std;
int main ()
{
	int a,b,c;
	cin>>a>>b>>c;
	int temp1,temp2,temp3;
	temp1=max(a,b);
	temp2=max(temp1,c);
	temp3=min(temp1,c);
	int temp4=min(a,b);
	int temp5=max(temp4,temp3);
	int temp6=min(temp4,temp3);
	cout<<temp6<<' '<<temp5<<' '<<temp2;
	return 0;
}

标签:min,int,max,temp3,temp1,temp4,分支,结构
来源: https://blog.csdn.net/qq_45586832/article/details/123223925