鱼C论坛

 找回密码
 立即注册
查看: 2847|回复: 2

[技术交流] 关于机构体第3课课后题

[复制链接]
发表于 2013-11-17 18:21:55 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
如题 , 就是小甲鱼老师的结构体第三课课后作业 建立一个动态链表 , 我自己写了一个和答案不一样 但是也可以做出来,同样 我也没有使用malloc 函数 ,感觉小甲鱼老师的答案有些复杂, 不知道这样的思路对不对 各位帮着看一看 谢谢

#include <stdio.h>

struct student
{
    long num;
    float score;
    struct student *next;
};

void main()
{
    struct student student1 , *p1 , *p2 ,*head;
    int n = 0;

    p1 = &student1;
    p2 = &student1;

    do
    {
        printf("please input the number of this student:\t");
            scanf("%ld",&p1->num);

        printf("please input the score of this student : \t");
        scanf("%f",&p1->score);

        puts("\n");

        if(p1->num != 0)
        {
            n = n + 1;
            if(n ==1)
            {
                head = p1;
            }
        

            else if(n != 1)
            {
                p2->next = p1;
            }

            p2 = p1;

        }

        else if(p1->num == 0)
        {
            p2->next = NULL;
        }

        printf("This is the %d st student the number of student is :\t%ld and his / her score is :\t%f\n",n ,p1->num,p1->score);
        puts("***************************************************************************");
        puts("\n");
   
    }
    while(p2->next != NULL);
   
    printf("\n\nthe school is %d student\n",n);

}

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

使用道具 举报

 楼主| 发表于 2013-11-17 18:37:51 | 显示全部楼层
再问一下 大家 这道题 一定需要动态赋值(malloc)吗 ? 谢谢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2013-11-17 18:57:24 | 显示全部楼层
机构体????????
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-25 08:51

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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