vc6 编程问题

我要写的是一个排序的程序,要求把名字排序,用三个函数来实现,初学…………只能编到这个程度了,大家别用太专业的方法。题目要求:将把名同学的姓名存入二维数组中,用冒泡法排序,... 我要写的是一个排序的程序,要求把名字排序,用三个函数来实现,初学…………只能编到这个程度了,大家别用太专业的方法。
题目要求:将把名同学的姓名存入二维数组中,用冒泡法排序,按顺序输出。
#include<stdio.h>
#include<string.h>
char stud[10][8];
void bubble(char stud[][8])
{
char t;
int i,j;
for(i=0;i<8;i++)
for(j=0;j<8-i;j++)
if(strcmp(stud[j],stud[j+1])<0)
{
t=stud[j][8];
stud[j+1][8]=stud[j][8];
stud[j][8]=t;}
}
void input(char stud[][8])
{
int i;
for(i=0;i<8;i++)
gets(stud[i]);
}
void output(char stud[][8])
{
int i;
for(i=0;i<8;i++)
{
puts(stud[i]);
printf("\n");
}
}
main()
{
input(char stud[][8]);
bubble(char stud[][8]);
output(char stud[][8]);

}
出现的错误是:
Configuration: Hero - Win32 Debug--------------------
Compiling...
Hero.cpp
C:\Documents and Settings\d01\桌面\Hero.cpp(33) : error C2144: syntax error : missing ')' before type 'char'
C:\Documents and Settings\d01\桌面\Hero.cpp(33) : error C2660: 'input' : function does not take 0 parameters
C:\Documents and Settings\d01\桌面\Hero.cpp(33) : error C2059: syntax error : ')'
C:\Documents and Settings\d01\桌面\Hero.cpp(34) : error C2144: syntax error : missing ')' before type 'char'
C:\Documents and Settings\d01\桌面\Hero.cpp(34) : error C2660: 'bubble' : function does not take 0 parameters
C:\Documents and Settings\d01\桌面\Hero.cpp(34) : error C2059: syntax error : ')'
C:\Documents and Settings\d01\桌面\Hero.cpp(35) : error C2144: syntax error : missing ')' before type 'char'
C:\Documents and Settings\d01\桌面\Hero.cpp(35) : error C2660: 'output' : function does not take 0 parameters
C:\Documents and Settings\d01\桌面\Hero.cpp(35) : error C2059: syntax error : ')'
C:\Documents and Settings\d01\桌面\Hero.cpp(36) : warning C4508: 'main' : function should return a value; 'void' return type assumed
执行 cl.exe 时出错.

Hero.obj - 1 error(s), 0 warning(s)
谢谢大家了……可以追加……
展开
 我来答
梦想窗外
2009-05-20 · TA获得超过1588个赞
知道大有可为答主
回答量:1180
采纳率:0%
帮助的人:1563万
展开全部
这样改一下吧

char stud[10][8];
void bubble(char stud[][8])
{
char t[8];
int i,j;
for(i=0;i<8;i++)
for(j=0;j<8-i;j++)
if(strcmp(stud[j],stud[j+1])<0)
{
strcpy(t, stud[j]);
strcpy(stud[j], stud[j+1]);
strcpy(stud[j+1], t);
/* t=stud[j][8];
stud[j+1][8]=stud[j][8];
stud[j][8]=t; */
}
}
void input(char stud[][8])
{
int i;
for(i=0;i<8;i++)
gets(stud[i]);
}
void output(char stud[][8])
{
int i;
for(i=0;i<8;i++)
{
puts(stud[i]);
printf("\n");
}
}
main()
{
input(stud);
bubble(stud);
output(stud);

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
troy0215
2009-05-20 · TA获得超过231个赞
知道小有建树答主
回答量:310
采纳率:0%
帮助的人:306万
展开全部
main()
{
input(char stud[][8]);
bubble(char stud[][8]);
output(char stud[][8]);

}
改成
main()
{
input(stud);
bubble(stud);
output(stud);

}
另外,你的排序函数好像不对~
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式