guodanaodai 发表于 2013-11-17 18:21:55

关于机构体第3课课后题

如题 , 就是小甲鱼老师的结构体第三课课后作业 建立一个动态链表 , 我自己写了一个和答案不一样 但是也可以做出来,同样 我也没有使用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);

}

guodanaodai 发表于 2013-11-17 18:37:51

再问一下 大家 这道题 一定需要动态赋值(malloc)吗 ? 谢谢

有何不可0925 发表于 2013-11-17 18:57:24

机构体????????
页: [1]
查看完整版本: 关于机构体第3课课后题