Auto commit

This commit is contained in:
smallkun 2025-02-20 19:07:15 +08:00
parent 130450f639
commit d7b3392f59
3 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,33 @@
#include <stdio.h>
/*
if(){
()
}else{
()
}
*/
int main(void){
int x, y, z, t;//定义三个整型变量
//数据类型 变量名1, 变量名2;
scanf("%d%d%d", &x, &y, &z);
if(x > y){
t = x;
x = y;
y = t;
}//实现x和y比较 大数放y位置
if(y > z){
t = y;
y = z;
z = t;
}//实现y和z比较 大数放z位置 z为三个数字中最大数
if(x > y){
t = x;
x = y;
y = t;
}
printf("%d %d %d\n", x, y, z);
return 0;
}

Binary file not shown.