简单的租车系统

  package  com.imooc;

import java.util.Scanner;

public class test {

 

public static void main(String[] args) {

// TODO Auto-generated method stub

System.out.println("请问是否要租车?");

System.out.println("1:是  0:否");

Rentcar rc=new Rentcar();

Scanner sc =new Scanner(System.in);

int i=sc.nextInt();

if (i==1){

System.out.println("输入您要选择的车辆的序号");

rc.rentcar();

//int j=sc.nextInt();

rc.price();

System.out.println("操作完成请退出系统");

}else if(i==0){

System.out.println("请退出系统");

}

}

 

}

 

 

package com.imooc;

import java.util.Scanner;

public class Rentcar {

Scanner scnew Scanner(System.in);

public void rentcar(){

System.out.println("序号 : 车名   载人量   一天租金");

System.out.println("1 : 奥迪   4人 200元 ");

System.out.println("2: 马自达   5人 100元 ");

System.out.println("3 : 依维柯,20人 1000元");

System.out.println("4 : “皮卡雪6,42人 450元,");

}

public void price(){

double p=0;

int j=sc.nextInt();

System.out.println("输入您要租的天数");

int t=sc.nextInt();

//System.out.println("输出总金额");

if(j==1){

 p=200*t;

}else if(j==2){

p=100*t;

}else if(j==3){

p=1000*t;

}else if(j==4){

p=450*t;

}

//return p;

System.out.println("输入总金额"+p);

}

}

一个简单的汽车租赁管理系统(C++控制台程序): 利用C++实现对汽车和客户信息的增、删、改等操作,并保存。 部分代码: // CarRent.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "CarData.h" #include "Menu.h" #include"CustomerData.h" int main() { Menu::welcome(); Menu::login(); //登录界面 char choice; int carid, customerid; //汽车编号,客户编号 CustomerData CustomerDB; //客户库 Customer *r; //客户 CarData CarDB; //汽车库 Car *b; //汽车 Menu::showMenu(); //显示菜单 cout <> choice; while (choice != '0') { switch (choice) { case '1': //输入客户编号和要出租的汽车 cout <> customerid; try { if (customerid <= 0) throw 1; } catch (...) { cout << "输入有误,请重新输入"; break; } cout <> carid; try { if (carid <= 0) throw 1; } catch (...) { cout << "输入有误,请重新输入"; break; } r = CustomerDB.search(customerid); if (NULL == r) { cout << "不存在该客户!"; cout << endl; break; } b = CarDB.search(carid); if (b == NULL) { cout << "不存在该汽车!"; cout <borrowCar() == 0) { cout << "该汽车已租出!"; cout <borrowCar(b->getNo()); cout << "你在" <getBorTime()) << "成功出租一辆" <getName() << endl << "每日租金为(不足一天按一天计算):" <getPay(); break; case '2': //归还操作 cout <> customerid; try { if (customerid <= 0) throw 1; } catch (...) { cout << "输入有误,请重新输入"; break; } cout <> carid; try { if (carid <= 0) throw 1; } catch (...) { cout << "输入有误,请重新输入"; break; } r = CustomerDB.search(customerid); //按编号查找 if (r == NULL) { cout << "不存在该客户!" << endl; break; } b = CarDB.search(carid); if (b == NULL) { cout << "不存在该汽车!" <getOnshelf() == 1) { cout << "该汽车已经归还!" << endl; break; } cout << "您成功归还一辆"
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值