7-1 字符串排序(20 分)

本题要求编写程序,读入5个字符串,按由小到大的顺序输出。

输入格式:
输入为由空格分隔的5个非空字符串,每个字符串不包括空格、制表符、换行符等空白字符,长度小于80。

输出格式:
按照以下格式输出排序后的结果:

After sorted:
每行一个字符串
输入样例:
red yellow blue green white
输出样例:
After sorted:
blue
green
red
white
yellow

#include
#include
#include
using namespace std;
int main()
{
	string  s[5];
	string T;
	int i,j=0;
	for(i=0;i<5;i++)
	{
		cin>>s[i];
	}
	for(i=0;i<5;i++)
	{
		for(j=i+1;j<5;j++)
		{
			if(strcmp(s[i].c_str(),s[j].c_str())>0)
			{
				T=s[i];
				s[i]=s[j];
				s[j]=T;
			}
		}
	}
	cout<<"After sorted:"<

 

你可能感兴趣的:(7-1 字符串排序(20 分))