标题:本人菜鸟,求大神帮忙看看什么问题了
取消只看楼主
zoreing
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2013-4-11
结帖率:0
 问题点数:0 回复次数:1 
本人菜鸟,求大神帮忙看看什么问题了
#include"stdio.h"
#include"math.h"
#include"string.h"
#include"stdlib.h"
#include"time.h"
#include<malloc.h>
#define ERROR 0
#define OK 1



typedef struct article{char name[20];
char purpose[50];
char last[20];/* 最后限期*/

char mainkind[20];
int num;
struct article *next;
}article,*L;


void new_article(L &w)
{int i=0;
L a,e;
e=(L)malloc(sizeof(article));
    e=w;while(e)
e=e->next;
    a=(L)malloc(sizeof(article));
    a->next=NULL;
printf("请输入编号:");
scanf("%d",&(a->num));
printf("\n");
    printf("请输入物品名称:");
scanf("%s",&a->name);
printf("\n");
printf("请输入最后限期:");
scanf("%s",&a->last);
printf("\n");


printf("请输入种类:");
scanf("%s",&(a->mainkind));
printf("\n");

e->next=a;
}




void load(L w)
{L a;
a=w->next;
while(a)
{printf("编号:");
printf("%d\n",a->num);
printf("名称:");
printf("%s",a->name);
printf("\n");
printf("最后限期:");
printf("%s",a->last);
printf("\n");
printf("种类:");
printf("%s",a->mainkind);
printf("\n");
a=a->next;
}
}


int main()
{L w,a;
w=(L)malloc(sizeof(article));
w->next=NULL;
new_article(w);a=(L)malloc(sizeof(article));
a=w;
load(w);
return OK;
}
坐等回复
搜索更多相关主题的帖子: next article include purpose 
2013-04-12 11:57
zoreing
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2013-4-11
得分:0 
回复 2楼 ZaneYork
多谢了,解决了
2013-04-14 20:35



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




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

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