当前位置: 首页 > article >正文

简易地铁自动机售票系统实现(C++)

该程序具有以下功能

(1) 一个地铁路线类 Router,包含路线编号,途中的各个站点。可以新增、删除、查询路线,可以根据线路名称,显示线路图片。
(2) 一个地图类 Map,可以显示所有可以乘坐的地铁站名,以及线路信息。
(3) 根据用户选择起点和终点和人次信息,可以自动计算应付金额;根据用户输入的金额,计算找零信息;
(4) 使用外部文件存储路线相关信息。

#include <iostream>
#include <vector>
using namespace std;
 
class Router {
 
    private:
 
        string port[100];//经过站点
        int id;//路线编号
        int count=0; //站点数目
 
    public:
 
        void setId(int i) {
            id=i;
        }
 
        void addPort(string name) {
            port[count]=name;
            count++;
        }
 
        void getPort() {
            int i=0;
            for(i=0; i<count; i++) {
                cout<<"第"<<i+1<<"站:";
                cout<<port[i];
                cout<<endl;
            }
        }
 
        int check(string u,string v) {
            int d=0;
            for(int i=0; i<count; i++) {
                if(port[i]==u) {
                    for(int j=0; j<count; j++) {
                        if(port[j]==v) {
                            // u v
                            return ((i-j)>=0)?
                                   (i-j):(j-i);
                        }
                    }
                }
            }
            return 0;
        }
};
 
 
class Map {
 
    private:
        vector<Router> r;//路线图
 
 
    public:
        double charge=2;//每站价格
        void setCharge(double ch) {
            charge=ch;
        }
 
        void init() {
 
            Router temp1;
            temp1.setId(1);
            temp1.addPort("west");
            temp1.addPort("mid1");
            temp1.addPort("south");
            r.push_back(temp1);
 
            Router temp2;
            temp2.setId(2);
            temp2.addPort("south");
            temp2.addPort("mid2");
            temp2.addPort("east");
            r.push_back(temp2);
 
            Router temp3;
            temp3.setId(3);
            temp3.addPort("east");
            temp3.addPort("mid3");
            temp3.addPort("north");
            r.push_back(temp3);
 
            Router temp4;
            temp4.setId(4);
            temp4.addPort("north");
            temp4.addPort("mid4");
            temp4.addPort("west");
            r.push_back(temp4);
        }
 
        int buy(string start, string end) {
            int count=r.size();
            int d=0;
            for(int i=0; i<count; i++) {
                Router temp=r[i];
                d=temp.check(start,end);
                if(d>0) {
                    cout<<"您需要乘坐"<<i+1<<"号线"<<endl;
                    return d;
                }
            }
            return 0;
        }
 
        void show() {
            int count=r.size();
            cout<<"本市地铁线路图如下:"<<endl;
            for(int i=0; i<count; i++) {
                cout<<i+1<<"号线:"<<endl<<endl;
                Router temp=r[i];
                temp.getPort();
                cout<<endl<<endl;
            }
        }
};
 
 
void menu() {
    int m;
    Map map;
    map.init();
    while(1) {
        cout<<endl<<endl<<endl;
        cout<<"----------欢迎来到地铁售票系统-----------"<<endl;
        cout<<"----------1、路线查询-----------"<<endl;
        cout<<"----------2、购票-----------"<<endl;
        cin>>m;
        if(m==1) {
            map.show();
        } else if(m==2) {
            
            cout<<"请输入起点:"<<endl;
            string s;
            cin>>s;
            cout<<"请输入终点:"<<endl;
            string e;
            cin>>e;
            cout<<"请输入人数:"<<endl;
            int c;
            cin>>c;
            int d=map.buy(s,e);
            if(d>0) {
                double rs=(double)c*(double)d*map.charge;
                cout<<"您需要支付的费用为:";
                cout<<rs<<endl;
                cout<<"请输入您支付的金额:";
                double in=0;
                cin>>in;
                if(in>=rs) {
                    cout<<"购票成功!"<<endl;
                    cout<<"找零:"<<in-rs<<"元"<<endl;
                } else {
                    cout<<"金额不足,购票失败!";
                }
            } else {
                cout<<"抱歉,请选择其他交通!";
            }
        }
    }
}
 
int main() {
    menu();
    return 0;
}
 


http://www.kler.cn/a/146650.html

相关文章:

  • fastapi 调用ollama之下的sqlcoder模式进行对话操作数据库
  • Cyberchef使用功能之-多种压缩/解压缩操作对比
  • 足球虚拟越位线技术FIFA OT(二)
  • 进程-系统性能和计划任务常用命令-下篇
  • ADS 2022软件下载与安装教程
  • 《通往人工智能深度学习专家之路:全面解析学习路线图》
  • 王者荣耀小游戏
  • 数据结构 / 内存的动态申请和释放
  • AIGC创作系统ChatGPT网站源码、支持最新GPT-4-Turbo模型、GPT-4图片对话能力+搭建部署教程
  • 微软发布了Orca 2,一对小型语言模型,它们的性能超越了体积更大的同类产品
  • 王者荣耀java版
  • Java王者荣耀
  • 【shell脚本】常见的shell脚本面试题目
  • SpringBoot进阶——解释springboot的自动配置原理
  • 使用Terraform创建Docker镜像和容器
  • Rocket架构
  • C语言--每日选择题--Day24
  • 什么是steam红锁,如何防止steam账号红锁
  • 97、Text2NeRF: Text-Driven 3D Scene Generation with Neural Radiance Fields
  • 3.数据结构
  • React 入门使用 (官方文档向 Part2)
  • 【unity实战】实现一个放置3d物品建造装修系统(附项目源码)
  • 复亚智能交通无人机:智慧交通解决方案大公开
  • 微信小程序内部跳到外部小程序
  • Java EE 进程线程
  • 如何往excel中写子表?