标题:求大神,一个结构体问题
取消只看楼主
jioper
Rank: 1
等 级:新手上路
帖 子:38
专家分:0
注 册:2016-10-21
结帖率:70%
 问题点数:0 回复次数:3 
求大神,一个结构体问题
题目是要求输入学生学号,三门课成绩,计算总分并且按表格方式输出该表,加粗行有错,但我不知道为什么?求解答
我的程序如下
#include"stdio.h"
void main()
{
    int i,j;
    struct student
    {
     char name[5];
     double score[3];
     int studentnumber;
     double total;
    }stu[5];
    printf("请输入5个学生的学号,3门科成绩:\n");
    for(i=0;i<5;i++)
    {
        int total=0;
        scanf("%s",stu[i].name);
        scanf("%d",&stu[i].studentnumber);
        for(j=0;j<3;j++)
        {
            scanf("%lf",&stu[i].score[j]);
            stu[i].total=stu[i].total+stu[i].score;//error: pointer addition requires integral operand
        }
    }
        for(i=0;i<5;i++)
        {
        printf("%s\t%d\t%d\t%d\t",stu[i].name,stu[i].score,stu[i].studentnumber,stu[i].total);
        }
}


[此贴子已经被作者于2016-12-3 19:40编辑过]

搜索更多相关主题的帖子: include double 结构体 
2016-12-03 18:58
jioper
Rank: 1
等 级:新手上路
帖 子:38
专家分:0
注 册:2016-10-21
得分:0 
回复 2楼 九转星河
那个【b】好像是这个论坛的加粗符号,我本身没写,那个声明我改了,可还是存在我原文说的错误
2016-12-03 19:39
jioper
Rank: 1
等 级:新手上路
帖 子:38
专家分:0
注 册:2016-10-21
得分:0 
回复 4楼 九转星河
好,谢谢
2016-12-03 20:23
jioper
Rank: 1
等 级:新手上路
帖 子:38
专家分:0
注 册:2016-10-21
得分:0 
回复 6楼 炎天
多谢,非常清楚了
2016-12-03 21:01



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-471925-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.265888 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved