鱼C论坛

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

求助 编译没有错 运行后会退出

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

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

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

x
#include<stdio.h>
#include<malloc.h>
#include<stdlib.h>
#define LEN sizeof(struct SYS)
int n;
union bumen
{
        int banji;
        char zhiwu[10];
};
struct SYS
{
        int num;
        char name[10];
        char sex[5];
        char job;
        union bumen aa;
        struct SYS *next;
 };
 struct SYS *create()
 {
         struct SYS *p1,*p2,*phead;
         p1=p2=(struct SYS*)malloc(LEN);
         printf("请输入序号  ");
        scanf("%d",&p1->num);
        printf("请输入姓名  ");
        scanf("%s",&p1->name);
        printf("请输入性别  ");
        scanf("%s",&p1->sex);
        printf("请输入工作  ");
        scanf("%s",&p1->job);
        if(p1->job=='s')
        {
                printf("请输入班级  ");
                scanf("%d",&p1->aa.banji);        
        }
        else
        {
                if(p1->job=='t')
                {
                        printf("请输入职务  ");
                        scanf("%s",p1->aa.zhiwu);
                }
                else
                {
                        printf("没有内容\n");
                }
        }
         n=0;
         phead=NULL;
         while(p1->num)
         {
                 n++;
                 if(n==1)
                 {
                         phead=p1;
                 }
                 else
                 {
                         p2->next=p1;
                 }
                 p2=p1;
                 p1=(struct SYS*)malloc(LEN);
                        printf("请输入序号  ");
                        scanf("%d",&p1->num);
                        printf("请输入姓名  ");
                        scanf("%s",&p1->name);
                        printf("请输入性别  ");
                        scanf("%s",&p1->sex);
                        printf("请输入工作  ");
                        scanf("%s",&p1->job);
                        if(p1->job=='s')
                        {
                                printf("请输入班级  ");
                                scanf("%d",&p1->aa.banji);        
                        }
                        else
                        {
                                if(p1->job=='t')
                                {
                                        printf("请输入职务  ");
                                        scanf("%s",p1->aa.zhiwu);
                                }
//                                else
//                                {
//                                        printf("没有内容\n");
//                                }
                        }
         }
         
        p2->next=NULL;
        return phead;
 }
 
 void print(struct SYS *p)
 {
         do
         {
                 if(p->job=='s')
                 {
                         printf("    序号    姓名    性别    工作    部门");
                        printf("%-6d%-6s%-6s%-6s%d",p->num,p->name,p->sex,p->job,p->aa.banji); 
                 }
                else
                {
                        printf("    序号    姓名    性别    工作    部门");
                        printf("%-6d%-6s%-6s%-6s%-6s",p->num,p->name,p->sex,p->job,p->aa.zhiwu); 
                        
                }
                p=p->next;
                 
         }while(p);
 }
 
 
 void main()
 {
         struct SYS *str;
         str=create();
         print(str);
         
         
 }
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2016-3-20 10:32:40 | 显示全部楼层
我知道了  Job的类型是c
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2016-3-20 12:39:30 | 显示全部楼层
#include<stdio.h>
#include<malloc.h>
#include<stdlib.h>
#define LEN sizeof(struct SYS)
int n;
union bumen
{
        int banji;
        char zhiwu[10];
};
struct SYS
{
        int num;
        char name[10];
        char sex[5];
        char job;
        union bumen aa;
        struct SYS *next;
 };
 struct SYS *create()
 {
         struct SYS *p1,*p2,*phead;
         p1=p2=(struct SYS*)malloc(LEN);
         printf("请输入序号  ");
        scanf("%d",&p1->num);
        printf("请输入姓名  ");
        scanf("%s",&p1->name);
        printf("请输入性别  ");
        scanf("%s",&p1->sex);
        printf("请输入工作  ");
        scanf("%c",&p1->job);  请问这为什么用c不行,要用s
        if(p1->job=='s')
        {
                printf("请输入班级  ");
                scanf("%d",&p1->aa.banji);        
        }
        else
        {
                if(p1->job=='t')
                {
                        printf("请输入职务  ");
                        scanf("%s",p1->aa.zhiwu);
                }
                else
                {
                        printf("没有内容\n");
                }
        }
         n=0;
         phead=NULL;
         while(p1->num)
         {
                 n++;
                 if(n==1)
                 {
                         phead=p1;
                 }
                 else
                 {
                         p2->next=p1;
                 }
                 p2=p1;
                 p1=(struct SYS*)malloc(LEN);
                        printf("请输入序号  ");
                        scanf("%d",&p1->num);
                        printf("请输入姓名  ");
                        scanf("%s",&p1->name);
                        printf("请输入性别  ");
                        scanf("%s",&p1->sex);
                        printf("请输入工作  ");
                        scanf("%c",&p1->job);
                        if(p1->job=='s')
                        {
                                printf("请输入班级  ");
                                scanf("%d",&p1->aa.banji);        
                        }
                        else
                        {
                                if(p1->job=='t')
                                {
                                        printf("请输入职务  ");
                                        scanf("%s",p1->aa.zhiwu);
                                }
//                                else
//                                {
//                                        printf("没有内容\n");
//                                }
                        }
         }
         free(p1); 
        p2->next=NULL;
        return phead;
 }
 
 void print(struct SYS *p)
 {
         do
         {
                if(p->job=='s')
                 {
                         printf("    序号    姓名    性别    工作    部门\n");
                        printf("     %-6d%-6s    %-6s    %-6c %-6d\n",p->num,p->name,p->sex,p->job,p->aa.banji); 
                 }
                else
                {
                        printf("     %-6d%-6s    %-6s    %-6c %-6s\n",p->num,p->name,p->sex,p->job,p->aa.zhiwu); 
                        
                }
                p=p->next;
                 
         }while(p);
 }
 
 
int main()
 {
         struct SYS *str;
         str=create();
         print(str);
         
         
 }

评分

参与人数 1荣誉 +3 鱼币 +5 收起 理由
~风介~ + 3 + 5 自力更生!

查看全部评分

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-26 22:38

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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