import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Scanner;
public class CarManage {
static BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
static String CarNumber="",GoTime="", StartAddress="", StopAddress="", TotalTime="", yn="";
static int CarryNumber=0, BuyPeople=0;
static Read[] c = new Read[20];
static int num = 6;
static {
Read a1 = new Read("C001","08:12","南充","成都","02:45",50,29);
Read a2 = new Read("K002","11:21","成都","绵阳","03:15",30,29);
Read a3 = new Read("G003","14:13","西昌","成都","03:00",40,29);
Read a4 = new Read("T004","17:32","自贡","绵阳","01:20",60,29);
Read a5 = new Read("K005","20:03","昆明","重庆","12:45",45,29);
Read a6 = new Read("H006","23:52","玉溪","昆明","01:50",46,29);
c[0] = a1;
c[1] = a2;
c[2] = a3;
c[3] = a4;
c[4] = a5;
c[5] = a6;
}
static SimpleDateFormat nyr = new SimpleDateFormat("yyyy年MM月dd日");
static String nownyr = nyr.format(new Date()); //创建当前时间年月日
static SimpleDateFormat sf = new SimpleDateFormat("HH:mm");
static String nowsf = sf.format(new Date()); //创建当前时间时分
public static void main(String[] args) {
boolean power = true;
while(power) {
System.out.print("\n\n");
System.out.println(" "+nownyr);
System.out.print("\n");
System.out.println(" 班次号 发车时间 起点站 终点站 行程总时间 额定载量 已订票人数 当前状况");
System.out.println("—————————————————————————————————————————————————————————————————————————————————————————————————————————");
for(int i=0;i<num;i++) {
System.out.println(" "+c[i].CarNumber()+" "+c[i].GoTime1()+" "+c[i].StartAddress()+" "+c[i].StopAddress()+" "+c[i].TotalTime()+" "+c[i].CarryNumber()+" "+c[i].BuyPeople()+" "+c[i].GoTime());
}
System.out.print("\n");
System.out.println("");
System.out.println("┌———————————————————————————————————————————————————————————————————————┐");
System.out.println("│ ┌——————————————————————————《车票管理系统》————————————————————————┐ │");
System.out.println("│ │ ┌———————————————————————————————————————————————————————————┐ │ │");
System.out.println("│ │ │ │ │ │");
System.out.println("│ │ │ "+nownyr+" │ │ │");
System.out.println("│ │ │ │ │ │");
System.out.println("│ │ │ 1. 录入列车信息 2. 浏览列车信息 │ │ │");
System.out.println("│ │ │ │ │ │");
System.out.println("│ │ │ 3. 查询路线信息 4. 删除列车信息 │ │ │");
System.out.println("│ │ │ │ │ │");
System.out.println("│ │ │ 5. 修改列车信息 6. 自助售票系统 │ │ │");
System.out.println("│ │ │ │ │ │");
System.out.println("│ │ │ 7. 自助退票系统 8. 退出系统 │ │ │");
System.out.println("│ │ │ │ │ │");
System.out.println("│ │ └———————————————————————————————————————————————————————————┘ │ │");
System.out.println("│ └—————————————————————————————————————————————————————————————————┘ │");
System.out.println("└———————————————————————————————————————————————————————————————————————┘");
try{
System.out.println("请输入您的选择:");
int choose = new Scanner(System.in).nextInt();
switch (choose){
case 1 :
{
inputcarinformation();
break;
}
case 2:
{
readcarinformation();
break;
}
case 3:
{
queryrouteinformation();
break;
}
case 4 :
{
deletecarinformation();
break;
}
case 5 :
{
changecarinformation();
break;
}
case 6 :
{
sellcarticket();
break;
}
case 7 :
{
refund();
break;
}
case 8 :
{
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>谢谢您的使用!<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>再见!<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<");
System.out.println(">>>>>>>>>>>>>>>>>
Kyrie的小弟
- 粉丝: 4
- 资源: 1
最新资源
- 【Unity对话和任务管理插件】Dialogue and Quests 灵活的对话系统,轻松创建对话
- k8s命令详细教程大大是的
- 基于Java的运动赛事管理系统
- 【Unity 资源管理插件】Asset Inventory 2 高效组织、搜索、管理各种资源,提高工作效率
- 【 Unity网格优化插件】MeshFusion Pro: Ultimate Optimization Tool 优化 3D 模
- 平面设计-39款粗糙污渍纹理轻微颗粒矢量设计素材
- 为圣诞树增添节日祝福:用CSS和HTML添加文本标签
- qml和c++的交互,和QQuickWidget的使用
- 11阿发发发案发时发生
- Node-Red语音识别节点node-red-node-ui-microphone-0.3.1
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
- 1
- 2
- 3
- 4
- 5
- 6
前往页