鱼C论坛

 找回密码
 立即注册
查看: 2941|回复: 4

求照顾啊~·~~~

[复制链接]
发表于 2013-11-29 18:53:43 | 显示全部楼层 |阅读模式
1鱼币
#include<stdio.h>
#include<malloc.h>
struct student
{
        int num;
        float score;
        struct student* next;
}*head=NULL,*p1=NULL,*p2=NULL;
int main(void)
{
        int i=0;
        printf("Please enter 0 when you want to finish\n");
        do
        {  
            printf("please enter the num");
                scanf("%d",p1->num);
                printf("please enter the score");
                scanf("%f",p1->score);
                i++;
                if(i==1)
                {
                        head=p1;
                }
                p2=p1;
                p1=(struct student*)(malloc(sizeof(struct student)));
                p2->next=p1;
        }while(p2->num);
        p1=head;
        while(p2->num)
        {
         printf("the num is %d \n",p1->num);
         printf("the score is %f\n",p1->score);
         p1=p1->next;       
        }
        return 0;
}
。。错那里了TT

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2013-11-29 18:54:57 | 显示全部楼层
无法READ 和WRITTEN 怎么解决·····
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2013-11-29 20:20:42 | 显示全部楼层

试了一下   好像错误不少啊
scanf("%d",p1->num);这个地方就报错了说是“访问违例”
我不懂结构体没办法研究
我就是用vc++6.0的调试看了下  希望对你有点帮助
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2013-11-29 22:56:04 | 显示全部楼层
首先你定义的指针p1无指向(NULL),所以不存在p->num,其次p->num等同于(*p).num,你要向其存入数据需要加&,还有你的第二个while中p1写成p2了。
程序建议:在程序结束前最好释放节点空间,free()。
               你的while循环想要终止需要多输入一次,结构体成员少时还可以,如果是学号姓名成绩年龄。。。。很多信息终止输入会很麻烦
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2013-12-1 01:44:13 | 显示全部楼层
写的太乱了。。。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 21:24

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表