| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 523 人关注过本帖
标题:关于结构体的问题。。。很疑惑啊!
只看楼主 加入收藏
物极必反
Rank: 2
等 级:论坛游民
帖 子:54
专家分:35
注 册:2011-10-3
结帖率:93.75%
收藏
已结贴  问题点数:10 回复次数:1 
关于结构体的问题。。。很疑惑啊!
程序代码:
此程序功能是:输入两个学生的学号、姓名、成绩,输出成绩高的学号、姓名、成绩。

错误信息为:

error C2224: left of '.st1' must have struct/union type
error C2224: left of '.st2' must have struct/union type


# include <stdio.h>
int main (void)
{
    struct Student
    {
        int num;
        char name[21];
        int score;
    };
    struct Student st1,st2;
    scanf ("%d %s%d",&st1.num,st1.name,&st1.score);
    scanf ("%d %s%d",&st2.num,st2.name,&st2.score);
    if (st1.score>st2.score)
    {
        printf("num is %d\n name is %s\n score is %d",
        st1.num,st1.name.st1.score);

    }
    else if (st1.score<st2.score)
    {
        printf("num is %d\nname is %s\nscore is %d",
        st2.num,st2.name.st2.score);
    }
    else
    {
        printf("num is %d\nname is %s\nscore is %d",
        st1.num,st1.name.st1.score);
        printf("\n");
        printf("num is %d\nname is %s\nscore is %d",
        st2.num,st2.name.st2.score);
    }
    getch();
}
搜索更多相关主题的帖子: 姓名 信息 结构体 
2011-12-16 22:56
sala0127
Rank: 2
等 级:论坛游民
帖 子:56
专家分:52
注 册:2011-11-8
收藏
得分:10 
回复 楼主 物极必反
printf语句中变量间的标点符号,,和.打错了。。。。。
2011-12-16 23:51
快速回复:关于结构体的问题。。。很疑惑啊!
数据加载中...
 
   



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

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