Determine the largest number among three numbers using C++

后端 未结 5 1390
暖寄归人
暖寄归人 2021-01-19 23:20

How can I determine the largest number among three numbers using C++?

I need to simplify this

 w=(z>((x>y)?x:y)?z:((x>y)?x:y));
5条回答
  •  一向
    一向 (楼主)
    2021-01-19 23:46

    Starting from C++11, you can do

    w = std::max({ x, y, z });
    

提交回复
热议问题