0
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
叶子鑫
高级守护
高级守护
核心代码
int a,b,c;
cin>>a>>b>>c;
if(a<b&&a<c)
cout<<......;
if(a>b&&b<c)
cout<<......;
if(a>c&&c<b)
cout<<......;
if(a==b&&b<c)
cout<<......;
if(a==c&&c<b)
cout<<......;
if(...)
cout<<...;
if(...)
cout<<...;
0
0
0
0