mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 15:48:42 +00:00
16 lines
257 B
C
16 lines
257 B
C
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;
|
|
}
|
|
}
|
|
}
|