📅  最后修改于: 2022-03-11 14:57:57.192000             🧑  作者: Mango
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";