#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
int main()
{
int a=0 ;
int b=0 ;
int c=0 ;
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", a, b, c);
system(“pause”);
return 0;
}
将三个数按从大到小输出。
最新推荐文章于 2024-07-21 12:59:55 发布