📌  相关文章
📜  找到 3 个中的最小值 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:57.192000             🧑  作者: Mango

代码示例1
if (a <= b && a <= c) 
        cout << a << " is the smallest"; 
  
    else if (b <= a && b <= c) 
        cout << b << " is the smallest"; 
  
    else
        cout << c << " is the smallest";