#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
void main()
{
int a = 0;
int b = 0;
int c = 0;
int t;
printf("请输入三个整数:");
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", a, b, c);
system("pause");
return(0);
}
c语言练习题:输入三个整数将他们从大到小进行排列
最新推荐文章于 2023-12-08 10:26:54 发布