鱼C论坛

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

c语言--共用体函数--操作输入输出时不正常的问题。

[复制链接]
发表于 2014-6-5 20:57:11 | 显示全部楼层 |阅读模式

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

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

x
本帖最后由 小泉向西流 于 2014-6-6 14:36 编辑

今天看了小甲鱼老师的c语言的视频,第059讲, 讲的共用体部分的内容。
QQ截图20140605205157.png
#include<stdio.h>


struct
{
        int num;
        char name[20];
        char sex;
        char job;
        union
        {
                int class;
                char position[10];
        }category;
}person[2];

void main()
{
        int  i, n;
        printf("Please input the number of the records:  ");
        scanf("%d",&n);

        printf("Please input records!\n\n");
        for(i=0;i<n;i++)
        {
                printf("Please input the num: ");
                scanf("%d",&person[i].num);                
                printf("Please input the name: ");
                scanf("%s",person[i].name);
            printf("Please input the sex <M/F>: ");
                scanf("%c",&person[i].sex);        
                printf("Please input the job <t/s>: ");
                scanf("%c",&person[i].job);

                if(person[i].job=='s')
                {
                        printf("Plaese input the class: ");
                        scanf("%d",&person[i].category.class);
                }
                else if(person[i].job=='t')
                {
                        printf("Plaese input the position: ");
                        scanf("%s",person[i].category.position);
                }
                else
                {
                        printf("inpur error!\n\n");
                }
                
                
        }
        
        
        
        printf("\n\n");
        printf("There are %d records:\n", n);
        printf("No.\tname\tsex\tjob\tclass/position\n");
        for(i=0;i<n;i++)
        {
                if(person[i].job=='s')
                {
                        printf("%-6d  %-8s %-7c %-6c %-6d\n", person[i].num, person[i].name, person[i].sex, person[i].job, person[i].category.class);
                }
                else
                {
                        printf("%-6d  %-8s %-7c %-6c %-6s\n", person[i].num, person[i].name, person[i].sex, person[i].job, person[i].category.position);
                }
        }
}

输出结果:
QQ截图20140605204609.png

提示输出不正常,导致输入也不正常。
但编译可以通过,无error 无warning。
为什么会出现这种情况呢?求大神帮忙开导下。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2014-6-5 20:58:55 | 显示全部楼层
本帖最后由 小泉向西流 于 2014-6-5 21:07 编辑

我自己加了一个n, 可以限定输入数据单元的个数。
其他的,依据框图写的。
期望出现视频中的这种效果。(增加部分: 要先选择要输入的结构体元素的个数。其他不变)
QQ截图20140605210355.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2014-6-6 14:36:52 | 显示全部楼层
有人来解答吗?
{:1_1:}{:1_1:}
快来大神啊。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-22 15:45

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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