一道c语言数组指针的题目 帮忙看看哪里出错了

#include<stdio.h>#include<string.h>main(){structstudent{intno;/*学号*/charname[8];/*姓名*... #include <stdio.h>
#include <string.h>
main(){
struct student
{ int no; /*学号*/
char name[8]; /*姓名*/
int score; /*学习成绩*/
};
struct student stu[]={{10,"Tom",90},{11,"Jerry",80},{12,"Harold",70}};
/*用结构体类型来定义*/

#include <stdio.h>
#include <string.h>

struct student
{ int no; /*学号*/
char name[8]; /*姓名*/
int score; /*学习成绩*/
};
struct student stu[]={{10,"Tom",90},{11,"Jerry",80},{12,"Harold",70}};

main()
{
char str[10];
int i;
do
{ printf("Enter a name:");
scanf("%s",str);
for (i=0;i<3;i++)
if( strcmp(str,stu[i].name)==0 )
{ printf("No :%d\n",stu[i].no);
printf("Name :%8s\n", stu[i].name );

printf("Score :%d\n",stu[i].score);
break;
}
if (i>=3) printf("Not Found\n");
}while (strcmp(str,"0")!=0);
}
----------------------------------
题目如上,
运行的时候出现几个错误,
小弟刚学c语,
不知道怎么改,
帮帮忙,,
谢谢了。。
说对了加分。
展开
 我来答
临骏1
2008-05-19
知道答主
回答量:27
采纳率:0%
帮助的人:0
展开全部
#include <stdio.h>
#include <string.h>

struct student
{
int no; /*学号*/
char name[8]; /*姓名*/
int score; /*学习成绩*/
};
struct student stu[]={{10,"Tom",90},{11,"Jerry",80},{12,"Harold",70}};
/*用结构体类型来定义*/

main()
{
char str[10];
int i;
do
{
printf("Enter a name:");
scanf("%s",str);
for (i=0;i<3;i++)
if( strcmp(str,stu[i].name)==0 )
{
printf("No :%d\n",stu[i].no);
printf("Name :%8s\n", stu[i].name );

printf("Score :%d\n",stu[i].score);
break;
}
if (i>=3)
printf("Not Found\n");
}while (strcmp(str,"0")!=0);
}

其实你写的还不错嘛~~~~~虽然我还没看呢~~~
运行下没错误啦~~
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式