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