下载此文档

航班订票系统源代码.docx


文档分类:IT计算机 | 页数:约8页 举报非法文档有奖
1/8
下载提示
  • 1.该资料是网友上传的,本站提供全文预览,预览什么样,下载就什么样。
  • 2.下载该文档所得收入归上传者、原创者。
  • 3.下载的文档,不会出现我们的网址水印。
1/8 下载此文档
文档列表 文档介绍
#include<>
#include<>
#include<>
struct Node
{
    char Identifier[10];
    int Num;
    char Time[20];
    char Gate[10];
    char UnitPrice[10];
    struct Node* next;
};
struct Node* Initialize()
{
    struct Node*p,*q,*head;
    head=(struct Node*)malloc(sizeof(struct Node));
    FILE* fp;
    int m;
    char str[60];
    fp=fopen("","r+");
    head->next=NULL;
        while(m!=1)
        {
            p=(struct Node*)malloc(sizeof(struct Node));
            if(p==NULL)
            {
              printf("Error!\n");
              exit(0);
            }
            printf("Please input the Flight number:\n");
            scanf("%s",p->Identifier);
            printf("Please input Flight ticket numbers:\n");
            scanf("%d",&p->Num);getchar();
            printf("Please input Flight time:\n");
            scanf("%s",p->Time);
            printf("Please input Flight Gate:\n");
            scanf("%s",p->Gate);
            printf("Please input Flight price:\n");
            scanf("%s",p->UnitPrice);
            if(head->next==NULL)
            {
                head->next=p;
            }
            else
            {
                q->next=p;
            }
            q=p;
            p->next=NULL;
            printf("If want to exit, input 1;else 0:\n");
            scanf("%d",&m);getcha

航班订票系统源代码 来自淘豆网www.taodocs.com转载请标明出处.

相关文档 更多>>
非法内容举报中心
文档信息
  • 页数8
  • 收藏数0 收藏
  • 顶次数0
  • 上传人plm860108
  • 文件大小18 KB
  • 时间2018-07-05