亦糖. 2022-11-27 20:24 采纳率: 100%
浏览 2
已结题

为什么这个输入完n后就没有了?

img

img

img

img


要求用指针和结构体,有没有大能能来看看它呀。它这个输入完n是多少就没有下文了,直接没了。

  • 写回答

1条回答 默认 最新

  • qzjhjxj 2022-11-27 21:52
    关注

    好几处错误,函数体里也有错误:

    img


    修改如下,供参考:

    #include <stdio.h>
    #include <stdlib.h>
    /***********Begin***********/
    struct STUDENT{
       long num;
       char name[13];
       float score[4],total,average;
    
    };
    /***********End*************/
    
    
    void Input(struct STUDENT *stud, int n);
    void Print(struct STUDENT *stud, int n);
    void TotalAndAverage(struct STUDENT *stud, int n);
    
    int main()
    {
        int n;
        /***********Begin***********/
        printf("Input n(n<=30):");
        scanf("%d",&n);
                     //scanf("%d",n); 修改
        struct STUDENT a[31],*stud;
                     // stud=(struct STUDENT *)malloc(n,sizeof(struct STUDENT));
        stud=a;
        Input(stud, n); //修改
                    //void Input(struct STUDENT *stud, int n);
                    //stud=&a[0];
        TotalAndAverage(stud, n);//修改
                    //void TotalAndAverage(struct STUDENT *stud, int n);
                    //stud=&a[0];
        Print(stud, n); //修改
                    //void Print(struct STUDENT *stud, int n);
        /***********End*************/
        
        return 0;
    }
    void Input(struct STUDENT *stud, int n)
    {
        /***********Begin***********/
     
         for(int i=0;i<n;i++){
             scanf("%ld", &(*stud).num);
             scanf("%s",  (*stud).name); //&(*stud).name[13]);修改
             for(int j=0;j<4;j++){
                 scanf("%f", &(*stud).score[j]);
             }
             stud++;
         }
        /***********End*************/
    }
    void Print(struct STUDENT *stud, int n)
    {
        printf("%8s%12s%10s%10s%10s%10s%10s%10s\n","NO.","Name","Computer","English","Math","Music","Total","Average");
        for(int i=0;i<n;i++)
        {
            printf("%8ld",(*stud).num);
            printf("%12s",(*stud).name); //(*stud).name[13]); 修改
            for(int j=0;j<4;j++)
            {
                printf("%10.0f",(*stud).score[j]);
            }
            printf("%10.0f",(*stud).total);
            printf("%10.0f\n",(*stud).average);
            stud++;
        }
    }
    void TotalAndAverage(struct STUDENT *stud, int n)
    {
        /***********Begin***********/
         float x=0;
         for(int i=0;i<n;i++){
             x=0;
             for(int j=0;j<4;j++){
                 x=(*stud).score[j]+x;
             }
             (*stud).total=x;
             x=x/4.0;   //修改
             (*stud).average=x;
             stud++;
         }
        /***********End*************/
    }
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录

报告相同问题?

问题事件

  • 系统已结题 12月6日
  • 已采纳回答 11月28日
  • 创建了问题 11月27日

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化