免费的毛片网站,大又大粗又爽又黄少妇毛片,久久免费国产视频,菠萝蜜视频网在线www

當(dāng)前位置:  > 航空產(chǎn)業(yè)

航空票務(wù)系統(tǒng)

作者: 發(fā)布時間: 2022-09-12 01:33:25

簡介:】本篇文章給大家談?wù)劇逗娇掌眲?wù)系統(tǒng)》對應(yīng)的知識點,希望對各位有所幫助。本文目錄一覽:
1、用C語言編寫一個航班訂票管理系統(tǒng),該系統(tǒng)用于機場航班訂票。假設(shè)某機場有若干次,每次

本篇文章給大家談?wù)劇逗娇掌眲?wù)系統(tǒng)》對應(yīng)的知識點,希望對各位有所幫助。

本文目錄一覽:

用C語言編寫一個航班訂票管理系統(tǒng),該系統(tǒng)用于機場航班訂票。假設(shè)某機場有若干次,每次有N個座位的飛機航

白癡,這個問題至少200分,我以前的比這個簡單的200分也沒人回答

#include stdio.h

#include string.h

#include conio.h

#include ctype.h

#include stdlib.h

#include malloc.h

#include math.h//overflow

#define ok 1

typedef struct Yidingkehu

{//單鏈表

char name[15];//已訂票的客戶姓名

int dingpiaoshu;//已訂票數(shù)量

struct Yidingkehu *next1;//

}Yidingkehu,*Link;

typedef struct Weidingkehu

{//單鏈隊

char name[15];//預(yù)訂票的客戶姓名

int yudingpiao;// 要訂票數(shù)量

struct Weidingkehu *next2;//下一個鏈隊結(jié)點指針

}Weidingkehu,*Qptr;

typedef struct Hangxian

{//創(chuàng)建一個含有六個信息的結(jié)構(gòu)體

char hangbanhao[15];//航班號-

char feijihao[15];//飛機號

int feixingriqi;//起飛時間

int chenkerenshu;//座位數(shù)

int yupiao;//余票

char zhongdianzhai[15];//降落城市

struct Hangxian *next;//指向下一個鏈結(jié)點的指針

struct Yidingkehu *yiding;//定義一個指向已訂票客戶的頭結(jié)點指針

struct Weidingkehu *yudingqueue;

}Hangxian,*Linklist;

Linklist InitLinklist();//01

int InsertLinklist(Linklist head1);//02

void hbhchaxun();//通過航班號查詢

void mddchaxun();//通過目的地查詢

void lurugongneng();//初始化錄入功能

void chaxungongnen();//查詢功能

void dingpiaogongnen();//訂票功能

void tuipiaogongnen();//退票功能

void main()

{

int n;

do{ //打印主界面

printf("\t 歡迎使用航空客運訂票系統(tǒng)\n");

printf("\t+++++++++++++++++++++++++++++\n");

printf("\t==1. 錄入功能 ==\n");

printf("\t==2. 查詢功能 ==\n");

printf("\t==3. 訂票功能 ==\n");

printf("\t==4. 退票功能 ==\n");

printf("\t==5. 退出 ==\n");

printf("\t+++++++++++++++++++++++++++++\n");

printf("\t請選擇:");

scanf("%d",n);printf("\n");

switch(n)

{

case 1: lurugongneng();//錄入功能

break;

case 2: chaxungongnen();//查詢功能

break;

case 3: dingpiaogongnen();//訂票功能

break;

case 4:tuipiaogongnen();//退票功能

break;

default :exit(0);//退出

}

}while(n==1||n==2||n==3||n==4);

}

void lurugongneng()//初始化的單鏈表*********************************************************錄入功能

{

Linklist p;

//int m,n;

if(!p) exit(OVERFLOW);

printf("\t請依次輸入下面幾項內(nèi)容:\n\n");//這里的輸入采用一個個單獨輸入,避免了亂賦值的現(xiàn)象

printf("航班號\n");

gets(p-hangbanhao);//這里的二個gets主要是因為在回車鍵的輸入,其中的第一個是來接收上次的回車

gets(p-hangbanhao);

printf("飛機號\n");

gets(p-feijihao);

printf("終點站\n");

gets(p-zhongdianzhai);

printf("飛行日期\n");

scanf("%d",p-feixingriqi);

printf("乘客總數(shù)\n");

scanf("%d",p-chenkerenshu);

printf("余票數(shù)\n");

scanf("%d",p-yupiao);

}

void chaxungongnen()//******************************************************************查詢功能

{

int n;

printf("\t 查 找 航 線 信 息 \n");

printf("\t+++++++++++++++++++++++++++++\n");

printf("\t==1. 通過目的地查詢 ==\n");

printf("\t==2. 通過航班號查詢 ==\n");

printf("\t+++++++++++++++++++++++++++++\n");

printf("\t請選擇:");

scanf("%d",n);

printf("\n");//格式化

switch(n)

{

case 1:mddchaxun();

break;

case 2:hbhchaxun();

break;

default :break;

}

}

void mddchaxun()//通過目的地查詢

{

char c[15];

int m;

Linklist p=L;

printf("\t請輸入要查詢的目的地:");

gets(c);

gets(c);//原因同上

do{

p=p-next;

if(p)

{

m=strcmpi((*p).zhongdianzhai,c);//如果==的話則m=0;

if(m==0)

{

printf("\t航班信息:\n");

printf("\t航班號:%s\n",p-hangbanhao);

printf("\t飛機號:%s\n",p-feijihao);

printf("\t飛行時間:周%d\n",p-feixingriqi);

printf("\t余票量:%d\n",p-yupiao);

}

}

else

{//如果不匹配的話就做

printf("\t對不起沒有你要找的目的地:\n\n"); m=0;

}

}while(m!=0);

}

void hbhchaxun()//通過目的地查詢

{

char c[15];

int m;

Linklist p=L;

printf("\t請輸入要查詢的航班號:");

gets(c); gets(c);printf("\n");

do{

p=p-next;

if(p)

{

m=strcmpi((*p).hangbanhao,c);//如果==的話則m=0;這里的(*p).與p-的作用是一樣的

if(m==0)

{

printf("\t航班信息:\n");

printf("\t航班號:%s\n",p-hangbanhao);

printf("\t飛機號:%s\n",p-feijihao);

printf("\t飛行時間:周%d\n",p-feixingriqi);

printf("\t余票量:%d\n\n",p-yupiao);

}

}

else

{//如果不匹配的話就做

printf("\t對不起沒有你要找的航班號:\n"); m=0;

}

}while(m!=0);

}

void dingpiaogongnen()//***************************************************************訂票功能

{

char c[15];

int m=1,piao,ydpiao=0,yd=0,n;//

gets(c);

printf("請輸入終點站名:"); gets(c); printf("\n");

p=L-next;

if(p) {

do{//查找一下,是否有這個航班

if(!p)

{

printf("對不起,沒有你要找的航班:\n\n");

goto loop1;

}

m=strcmpi(p-zhongdianzhai,c);

if(m==0)

{

printf("航班信息:\n");

printf("航班號:%s\n",p-hangbanhao);

printf("飛機號:%s\n",p-feijihao);

printf("飛行時間:周%d\n",p-feixingriqi);

printf("余票量:%d\n",p-yupiao);}

else p=p-next;

}while(m!=0);

if(m==0)

{

do{

printf("\n請輸入你要訂的票數(shù):"); scanf("%d",piao);

if(piao=p-yupiao)

{

h=p-yiding;

if(h)

{

h1=h;

h=h-next1;

h=(struct Yidingkehu*)malloc(sizeof(Yidingkehu));

printf("請輸入你的名字:");

gets(h-name);gets(h-name);

h-dingpiaoshu=piao;

h-next1=h1-next1;

h1-next1=h;

p-yupiao=p-yupiao-piao;

printf("訂票成功:\n"); m=2;

}

}

else

{

printf("余票量:%d\n",p-yupiao);

printf("對不起,余票 %d 張不足,不能完成訂票\n\n",p-yupiao);

printf(" 是否要重新訂票?\n");

printf("需要請輸入1 否則請按2 預(yù)訂請輸入3 : ");

scanf("%d",m);

printf("\n");

if(m==3) goto loop3;

}

}while(m==1);

}

}

else if(!p)

{

loop3: struct Weidingkehu *q3;

printf("對不起,該航班的票已售完\n");

q.front=p-yudingqueue;

if(q.front==q.rear) printf("沒有人預(yù)訂票,是否要預(yù)訂?\n");

else if(q.front!=q.rear) printf("已有人預(yù)訂票,是否要預(yù)訂?\n");

printf("預(yù)訂請輸入1 否則輸入2 : ");

scanf("%d",n);

printf("\n");

if(n==1)

{

printf("請輸入你的姓名"); gets(q3-name); gets(q3-name);//q3不能指向name???

printf("請輸入訂票數(shù)"); scanf("%d",q3-yudingpiao);

q3-next2=NULL;

q.rear-next2=q3;

q.rear=q3;

printf(" 你已經(jīng)預(yù)訂了 !\n");

}

}

loop1:;

}

void tuipiaogongnen()//***************************************************************退票功能

{

}

C語言程序?qū)戯w機訂票系統(tǒng)

#include stdio.h

#include string.h

#include conio.h

#include ctype.h

#include stdlib.h

#include malloc.h

#include math.h//overflow

#define ok 1

typedef struct Yidingkehu

{//單鏈表

char name[15];//已訂票的客戶姓名

int dingpiaoshu;//已訂票數(shù)量

struct Yidingkehu *next1;//

}Yidingkehu,*Link;

typedef struct Weidingkehu

{//單鏈隊

char name[15];//預(yù)訂票的客戶姓名

int yudingpiao;// 要訂票數(shù)量

struct Weidingkehu *next2;//下一個鏈隊結(jié)點指針

}Weidingkehu,*Qptr;

typedef struct Hangxian

{//創(chuàng)建一個含有六個信息的結(jié)構(gòu)體

char hangbanhao[15];//航班號-

char feijihao[15];//飛機號

int feixingriqi;//起飛時間

int chenkerenshu;//座位數(shù)

int yupiao;//余票

char zhongdianzhai[15];//降落城市

struct Hangxian *next;//指向下一個鏈結(jié)點的指針

struct Yidingkehu *yiding;//定義一個指向已訂票客戶的頭結(jié)點指針

struct Weidingkehu *yudingqueue;

}Hangxian,*Linklist;

Linklist InitLinklist();//01

int InsertLinklist(Linklist head1);//02

void hbhchaxun();//通過航班號查詢

void mddchaxun();//通過目的地查詢

void lurugongneng();//初始化錄入功能

void chaxungongnen();//查詢功能

void dingpiaogongnen();//訂票功能

void tuipiaogongnen();//退票功能

void main()

{

int n;

do{ //打印主界面

printf("\t 歡迎使用航空客運訂票系統(tǒng)\n");

printf("\t+++++++++++++++++++++++++++++\n");

printf("\t==1. 錄入功能 ==\n");

printf("\t==2. 查詢功能 ==\n");

printf("\t==3. 訂票功能 ==\n");

printf("\t==4. 退票功能 ==\n");

printf("\t==5. 退出 ==\n");

printf("\t+++++++++++++++++++++++++++++\n");

printf("\t請選擇:");

scanf("%d",n);printf("\n");

switch(n)

{

case 1: lurugongneng();//錄入功能

break;

case 2: chaxungongnen();//查詢功能

break;

case 3: dingpiaogongnen();//訂票功能

break;

case 4:tuipiaogongnen();//退票功能

break;

default :exit(0);//退出

}

}while(n==1||n==2||n==3||n==4);

}

void lurugongneng()//初始化的單鏈表*********************************************************錄入功能

{

Linklist p;

//int m,n;

if(!p) exit(OVERFLOW);

printf("\t請依次輸入下面幾項內(nèi)容:\n\n");//這里的輸入采用一個個單獨輸入,避免了亂賦值的現(xiàn)象

printf("航班號\n");

gets(p-hangbanhao);//這里的二個gets主要是因為在回車鍵的輸入,其中的第一個是來接收上次的回車

gets(p-hangbanhao);

printf("飛機號\n");

gets(p-feijihao);

printf("終點站\n");

gets(p-zhongdianzhai);

printf("飛行日期\n");

scanf("%d",p-feixingriqi);

printf("乘客總數(shù)\n");

scanf("%d",p-chenkerenshu);

printf("余票數(shù)\n");

scanf("%d",p-yupiao);

}

void chaxungongnen()//******************************************************************查詢功能

{

int n;

printf("\t 查 找 航 線 信 息 \n");

printf("\t+++++++++++++++++++++++++++++\n");

printf("\t==1. 通過目的地查詢 ==\n");

printf("\t==2. 通過航班號查詢 ==\n");

printf("\t+++++++++++++++++++++++++++++\n");

printf("\t請選擇:");

scanf("%d",n);

printf("\n");//格式化

switch(n)

{

case 1:mddchaxun();

break;

case 2:hbhchaxun();

break;

default :break;

}

}

void mddchaxun()//通過目的地查詢

{

char c[15];

int m;

Linklist p=L;

printf("\t請輸入要查詢的目的地:");

gets(c);

gets(c);//原因同上

do{

p=p-next;

if(p)

{

m=strcmpi((*p).zhongdianzhai,c);//如果==的話則m=0;

if(m==0)

{

printf("\t航班信息:\n");

printf("\t航班號:%s\n",p-hangbanhao);

printf("\t飛機號:%s\n",p-feijihao);

printf("\t飛行時間:周%d\n",p-feixingriqi);

printf("\t余票量:%d\n",p-yupiao);

}

}

else

{//如果不匹配的話就做

printf("\t對不起沒有你要找的目的地:\n\n"); m=0;

}

}while(m!=0);

}

void hbhchaxun()//通過目的地查詢

{

char c[15];

int m;

Linklist p=L;

printf("\t請輸入要查詢的航班號:");

gets(c); gets(c);printf("\n");

do{

p=p-next;

if(p)

{

m=strcmpi((*p).hangbanhao,c);//如果==的話則m=0;這里的(*p).與p-的作用是一樣的

if(m==0)

{

printf("\t航班信息:\n");

printf("\t航班號:%s\n",p-hangbanhao);

printf("\t飛機號:%s\n",p-feijihao);

printf("\t飛行時間:周%d\n",p-feixingriqi);

printf("\t余票量:%d\n\n",p-yupiao);

}

}

else

{//如果不匹配的話就做

printf("\t對不起沒有你要找的航班號:\n"); m=0;

}

}while(m!=0);

}

void dingpiaogongnen()//***************************************************************訂票功能

{

char c[15];

int m=1,piao,ydpiao=0,yd=0,n;//

gets(c);

printf("請輸入終點站名:"); gets(c); printf("\n");

p=L-next;

if(p) {

do{//查找一下,是否有這個航班

if(!p)

{

printf("對不起,沒有你要找的航班:\n\n");

goto loop1;

}

m=strcmpi(p-zhongdianzhai,c);

if(m==0)

{

printf("航班信息:\n");

printf("航班號:%s\n",p-hangbanhao);

printf("飛機號:%s\n",p-feijihao);

printf("飛行時間:周%d\n",p-feixingriqi);

printf("余票量:%d\n",p-yupiao);}

else p=p-next;

}while(m!=0);

if(m==0)

{

do{

printf("\n請輸入你要訂的票數(shù):"); scanf("%d",piao);

if(piao=p-yupiao)

{

h=p-yiding;

if(h)

{

h1=h;

h=h-next1;

h=(struct Yidingkehu*)malloc(sizeof(Yidingkehu));

printf("請輸入你的名字:");

gets(h-name);gets(h-name);

h-dingpiaoshu=piao;

h-next1=h1-next1;

h1-next1=h;

p-yupiao=p-yupiao-piao;

printf("訂票成功:\n"); m=2;

}

}

else

{

printf("余票量:%d\n",p-yupiao);

printf("對不起,余票 %d 張不足,不能完成訂票\n\n",p-yupiao);

printf(" 是否要重新訂票?\n");

printf("需要請輸入1 否則請按2 預(yù)訂請輸入3 : ");

scanf("%d",m);

printf("\n");

if(m==3) goto loop3;

}

}while(m==1);

}

}

else if(!p)

{

loop3: struct Weidingkehu *q3;

printf("對不起,該航班的票已售完\n");

q.front=p-yudingqueue;

if(q.front==q.rear) printf("沒有人預(yù)訂票,是否要預(yù)訂?\n");

else if(q.front!=q.rear) printf("已有人預(yù)訂票,是否要預(yù)訂?\n");

printf("預(yù)訂請輸入1 否則輸入2 : ");

scanf("%d",n);

printf("\n");

if(n==1)

{

printf("請輸入你的姓名"); gets(q3-name); gets(q3-name);//q3不能指向name???

printf("請輸入訂票數(shù)"); scanf("%d",q3-yudingpiao);

q3-next2=NULL;

q.rear-next2=q3;

q.rear=q3;

printf(" 你已經(jīng)預(yù)訂了 !\n");

}

}

loop1:;

}

void tuipiaogongnen()//***************************************************************退票功能

{

}

請采納答案,支持我一下。

C語言程序設(shè)計 飛機訂票管理系統(tǒng)

編制一個航班訂票系統(tǒng)。應(yīng)具備如下功能:該航班僅有一架100座飛機;該飛機座位分為吸煙區(qū)(30個座位)和無煙區(qū)(70個);訂票系統(tǒng)界面是選擇菜單:1.選吸煙區(qū)座位號;2.選無煙區(qū)座位號;用戶輸入自己的選擇后,該區(qū)若有空位,則順序地分配一個座號;否則致歉;若吸煙區(qū)已滿而無煙區(qū)有空位,則征求顧客意見,是否愿意得到無煙區(qū)的空位,若愿意,則在無煙區(qū)分配一個座號,否則致歉退出;顧客不得自主挑選座位號;

#includecstdio

#includestdlib.h

#includestring.h

#includememory.h

#define LIN 31

#define LIE 71

static int smok[LIN];//吸煙區(qū)票

static int nosmoke[LIE];//無煙區(qū)票

void Initnosmoke();//初始化

void ASK();void Initsmok();

void nosmok();

void smoke();

int search(int *array,int size);

void show();

int main()

{

Initnosmoke();

Initsmok();show();return 0;}void Initnosmoke()//初始化無煙區(qū)票{int sun=0;for(int j=0;jLIE;j++){sun+=1;nosmoke[j]=sun;}}void Initsmok()//初始化吸煙區(qū)票{int k=0;for(int i=0;iLIN;i++){k+=1;smok[i]=k;}}int search(int *array,int size)/*該函數(shù)的作用是用來查看系統(tǒng)中某類票是否賣完,入股賣完了返回1,反之返回的是0*/{int i;for(i=0;isize;i++){if(array[i]!=0){return 0;}else{;}}return 1;}void nosmok()//購買無煙區(qū)票{for(int i=0;iLIE;i++){if(iLIE-1){if(nosmoke[i]!=0){printf("你票是:NOSMOKE_%d\n",nosmoke[i]);nosmoke[i]=0;break;}else{;}}else{printf("對不起!NOSMOKE票已售完!");}}}void ASK()/*該函數(shù)用來詢問客戶是否需要買NOSMOKE票當(dāng)SMOKE票賣完的情況下*/{char ask;printf("NOSMOKE票你要嗎?(y/n)\n");ask=getchar();if(ask =='y' || ask=='Y' ){nosmok();}else if(ask=='n' || ask=='N'){printf("謝謝!再見\n");}else{printf("輸入錯誤!\n");}}void smoke()//購買吸煙區(qū)票{for(int j=0;jLIN;j++){if(jLIN-1){if(smok[j]!=0){printf("你票是: SMOKE_%d\n",smok[j]);smok[j]=0;break;}else{;}}else{printf("對不起!SMOKE票已售完!");{fflush(stdin);int rec=search(nosmoke,LIE);if(rec==0){ASK();}else{printf("謝謝!\n");}}}}}void window(){printf("\t\t歡迎使用航班訂票系統(tǒng)\n");printf("\t\t1.吸煙區(qū)座位\n");printf("\t\t2.無煙區(qū)座位\n");printf("\t\t3.退出系統(tǒng)\n");printf("\t\t請選擇(1~3)進行操作:\n");}void show(){system("color 4a");char ch=' ';window();while(ch!='3'){fflush(stdin);ch=getchar();switch(ch){case '1':{smoke();break;}case '2':{nosmok();break;}case '3':{break;}default:break;}window();ch=getchar();}}

關(guān)于《航空票務(wù)系統(tǒng)》的介紹到此就結(jié)束了。

尚華空乘 - 航空資訊_民航新聞_最新航空動態(tài)資訊
備案號:滇ICP備2021006107號-341 版權(quán)所有:蓁成科技(云南)有限公司    網(wǎng)站地圖
本網(wǎng)站文章僅供交流學(xué)習(xí),不作為商用,版權(quán)歸屬原作者,部分文章推送時未能及時與原作者取得聯(lián)系,若來源標(biāo)注錯誤或侵犯到您的權(quán)益煩請告知,我們將立即刪除。