1
0
已采纳
if (a<b)
{
if (a<c)
{
cout<<a<<endl;
}
else cout<<c<<endl;
}
else if (b<c)
{
cout<<b<<endl;
}
else cout<<c<<endl;
0
0
