标题:有没有更好的飞机订票程序啊
取消只看楼主
lgylhw
Rank: 2
等 级:论坛游民
帖 子:10
专家分:11
注 册:2010-3-17
结帖率:100%
已结贴  问题点数:2 回复次数:0 
有没有更好的飞机订票程序啊
#include<iostream>
#include<stdlib.h>
#include<string.h>
using namespace std;


class Flight
{
protected:
   
    char  name[20];
    char   ID[20];
    int   number[10][5];
public:
    void input();
    void print();
    //{
    //    cout<<"名字"<<name<<endl;
    //    cout<<"身份证"<<ID<<endl;
    //    cout<<"号码"<<number<<endl;
    //}
    //void list_menu();
    //void list_information();
    void bookticket();
    void deleteticket();
};

void main()
{
    int j;
   cout<<"============================================================";
       do
       {
         cout<<"---------*  1.输入信息     *------------------------"<<endl;
         cout<<"---------*  2.输出信息     *------------------------"<<endl;
         cout<<"---------*  3.定机票       *------------------------"<<endl;
         cout<<"---------*  4.退机票       *------------------------"<<endl;
         cout<<"---------*  0.退出         *------------------------"<<endl;

    cout<<"============================================================"<<endl;
    cout<<"请在0-4选择以回车键结束: ";
    cin>>j;
    if(j==1) input();//调用输入模块
    if(j==2) iprint();
    if(j==3) booktcket();
    if(j==4) deleteticket();
    if(j==0) break;
}while(j!='0');   //判断结束
cout<<"谢谢使用,再见! ";
}

void::input()
{
    int i,j;
    int number[10][5];
    cout<<"please input the number: ";
    for(i=0;i<10;i++)
    {
        for(j=0;j<5;j++)
        {
            cout<<number[10][5];
        }
    }

搜索更多相关主题的帖子: 飞机 订票 
2010-03-20 10:14



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




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

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