猿问

求一c++程序 比较x,y,z的大小

大一初学,求帮助
SURPRISE11
浏览 1735回答 2
2回答

习惯受伤

int main() { int x = 3, y = 4, z = 5; int max = x; if (max < y) { max = y; } if (max < z) { max = z; } return 0; }
随时随地看视频慕课网APP
我要回答