1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-11-23 15:48:42 +00:00
202401-programming-assignments/【实践课内】10.函数1/6-2 三整数最大值.c

16 lines
257 B
C
Raw Normal View History

2024-11-20 02:24:14 +00:00
int IntMax3(int x, int y, int z) {
if (x > y) {
if (x > z) {
return x;
} else {
return z;
}
} else {
if (y > z) {
return y;
} else {
return z;
}
}
}