解题思路:
注意事项:
参考代码:#include<iostream>
#include<string>
using namespace std;
int main()
{
string str1,str2,str3;
cin>>str1>>str2>>str3;
if((str1>str2)&&(str2>str3))
{
cout<<str3<<endl;
cout<<str2<<endl;
cout<<str1<<endl;
}
else if((str2>str1)&&(str1>str3))
{
cout<<str3<<endl;
cout<<str1<<endl;
cout<<str2<<endl;
}
else if((str1>str3)&&(str3>str2))
{
cout<<str2<<endl;
cout<<str3<<endl;
cout<<str1<<endl;
}
else if((str3>str1)&&(str1>str2))
{
cout<<str2<<endl;
cout<<str1<<endl;
cout<<str3<<endl;
}
else if((str3>str2)&&(str2>str1))
{
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str3<<endl;
}
else if((str2>str3)&&(str3>str1))
{
cout<<str1<<endl;
cout<<str3<<endl;
cout<<str2<<endl;
}
}
0.0分
0 人评分
程序员的表白 (C语言代码)浏览:1462 |
C语言训练-求素数问题 (C语言代码)浏览:773 |
C语言程序设计教程(第三版)课后习题8.9 (Java代码)浏览:1413 |
WU-图形输出 (C++代码)浏览:836 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:512 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:638 |
母牛的故事 (C语言代码)浏览:1451 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:750 |
C二级辅导-进制转换 (C语言代码)浏览:750 |
陶陶摘苹果2 (C语言代码)浏览:650 |