鱼C论坛

 找回密码
 立即注册
查看: 2363|回复: 4

[技术交流] 共用体作业

[复制链接]
发表于 2016-6-16 19:12:23 | 显示全部楼层 |阅读模式

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

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

x
自编,不带排错功能。
#include <stdio.h>

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

void main()
{
        int i;
        for(i=0; i<2; i++)
        {
                printf("Please input the num: ");
                scanf("%d", &person[i+1].num);
                printf("Please input the name: ");
                scanf("%s", &person[i+1].name);
                while(getchar() != '\n')
                {
                        ;
                }
                printf("Please input the sex(M/F): ");
                scanf("%c", &person[i+1].sex);
                while(getchar() != '\n')
                {
                        ;
                }
                printf("Please input the job(s/t): ");
                scanf("%c", &person[i+1].job);
                while(getchar() != '\n')
                {
                        ;
                }
                if(person[i+1].job == 's')
                {
                        printf("Please input the class: ");
                        scanf("%d", &person[i+1].category.banji);
                }
                else if(person[i+1].job == 't')
                {
                        printf("Please input the position: ");
                        scanf("%s", &person[i+1].category.position);
                }
                else
                {
                        printf("输入错");
                }
                putchar('\n');
        }

        printf("No.\tname\tsex\tjob\tclass/position\n"); 
        for(i=0; i<2; i++)
        {
                if(person[i+1].job == 's')
                {
                        printf("%d\t%s\t%c\t%c\t%d\n", 
                                person[i+1].num, 
                                person[i+1].name, 
                                person[i+1].sex, 
                                person[i+1].job, 
                                person[i+1].category.banji);
                }
                else if(person[i+1].job == 't')
                {
                        printf("%d\t%s\t%c\t%c\t%s\n", 
                                person[i+1].num, 
                                person[i+1].name, 
                                person[i+1].sex, 
                                person[i+1].job, 
                                person[i+1].category.position);
                }
        }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2016-6-17 15:22:07 | 显示全部楼层
同求同求同求同求同求同求
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2016-6-18 00:35:02 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2016-6-18 14:22:07 | 显示全部楼层

好吧 我知道不忍直视,只是为了作业而已,哈哈~
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2016-9-2 18:41:57 | 显示全部楼层
给楼主点赞
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-27 08:42

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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