字符串排序

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

输入格式:

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

输出格式:

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

After sorted:
每行一个字符串

输入样例:

red yellow blue green white

输出样例:

After sorted:
blue
green
red
white
yellow
#include
 
#include

int main()
{
	int i,j,index;
 
	char str[5][80],p[80]; 
 	scanf("%s",&str[0]);
	scanf("%s",&str[1]);
	scanf("%s",&str[2]);
	scanf("%s",&str[3]);
	scanf("%s",&str[4]);
	for(i=0;i<4;i++){
		index=i;
		for(j=i+1;j<5;j++){
			if(strcmp(str[index],str[j])>0){
				index=j;
			}
		} 
		strcpy(p,str[index]);  
 
		strcpy(str[index],str[i]);
 
		strcpy(str[i],p);
		
	}
	printf("After sorted:\n");
 	for(i=0;i<5;i++){
 		printf("%s\n",str[i]);
	 }

	return 0;
}
 
 
 

是一道指针题,但用了二维数组,指针的方法暂时没想到

你可能感兴趣的:(指针)