字符串排序出错(已解决)
#include <iostream>using namespace std;
int main()
{
void sort(char s[][]);
char str[10][8];
cout<<"输入字符串:";
int i,j;
for(i=0;i<10;i++)
{cin>>str[i];
}
sort (str);
for(i=0;i<10;i++)
{
cout<<str[i]<<endl;
}
return 0;
}
void sort(char s[10][8])
{
char *p,temp[10];
p=temp;
int i,j;
for( i=0;i<9;i++)
for( j=0;j<9-i;j++)
if(strcmp(s[j],s[j+1])>0)
{
strcpy(p,s[j]);
strcpy(s[j],s[j+1]);
strcpy(s[j+1],p);
}
for(i=0;i<10;i++)
cout<<s[i];
}
报错如下:E:\c++\字符串排序\主.cpp(5) : error C2087: '<Unknown>' : missing subscript
E:\c++\字符串排序\主.cpp(12) : error C2664: 'sort' : cannot convert parameter 1 from 'char [10][8]' to 'char [][1]' Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
执行 cl.exe 时出错(
[[it] 本帖最后由 yqiong 于 2008-3-28 12:01 编辑 [/it]]