[求助]字符数组的操作
#include <iostream>#include<cstring>
using namespace std;
int main()
{
char *str[10];
char *temp;
for(int i=0;i<5;i++)
cin>>str[i];
for(int k=0;k<4;k++)
for(int j=0;j<5;j++)
if(strcmp(str[j],str[j+1])>0)
{
temp=str[j];
str[j]=str[j+1];
str[j+1]=temp;
}
for(int z=0;z<5;z++)
cout<<str[z]<<endl;
system("pause");
return 0;
}
有错吗?!
我晕死!
非法!
[此贴子已经被作者于2006-7-22 22:56:10编辑过]