新微赢技术网

标题: [求助]字符数组的操作 [打印本页]

作者: 祗↘爲.輝仔    时间: 2009-11-3 03:51
标题: [求助]字符数组的操作
#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;
}

有错吗?!
我晕死!
非法!
作者: →大虾米々    时间: 2009-11-3 03:51
char *str[10]; //没有为char *数组中每个元素分配空间
char *temp;
for(int i=0;i<5;i++)
{
cin>>str[i];
}
作者: 大天使路西法    时间: 2009-11-3 03:51
Thanks a lot




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2