【C语言】输入三个数从大到小排列

#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
int main()
{ 
	int a, b, c;
	int t;
	printf("请输入三个数:\n");
	scanf("%d %d %d", &a, &b, &c);
	if (a < b)
	{ 
	t=a;
	a= b;
	b = t;
	}
	if (a <c)
	{ 
		t = a;
		a = c;
		c= t;
	}
	if (b<c)
	{ 
		t = b;
		b = c;
		c = t;
	}
	printf("%d%d%d\n", a,b,c);
		system("pause");
	return 0;
}

    原文作者:Briller712
    原文地址: https://blog.csdn.net/qq_43416226/article/details/89076223
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞