#include<stdio.h>标签:输出,return,temp,大到,int,d%,printf,输入 From: https://blog.51cto.com/u_13606048/6086981
int main() {
int a = 0;
int b = 0;
int c = 0;
int temp = 0;
printf("请输入想要排序的三个数值:");
scanf_s("%d%d%d", &a,&b,&c);
if (a < b) {
temp = a;
a = b;
b = temp;
}
if (a < c) {
temp = a;
a = c;
c = temp;
}
if (b < c) {
temp = b;
b = c;
c = temp;
}
printf("%d>%d>%d", a, b, c);
return 0;