//运行示例:
欢迎来到租车系统!
车序号 车名字 载人数(/:辆) 载重量(/:吨) 租金
0 大卡车 0 800 1000
1 小货车 0 500 600
2 大巴车 40 0 500
3 中士 30 0 350
4 小皮卡 3 200 500
请输入车的序号:
3
中士
请输入你需要车的辆数:
2
请输入所需租的天数:
5
你此次共需花费3500元!
//父类
public class Car {
int num;//车编号
String name;//车名字
int numPerson;//载人数
int weight;//载重量
int price;//租金
public Car(int num,String name,int numPerson,int weight,int price){
this.num=num;
this.name=name;
this.numPerson=numPerson;
this.weight=weight;
this.price=price;
System.out.println(num+"\t"+name+"\t"+numPerson+"\t\t"+weight+"\t\t"+price);
}
}
//创建测试
import java.util.Scanner;
public class Text{
public void show(){
System.out.println("欢迎来到租车系统!");
System.out.println("车序号"+"\t"+"车名字"+"\t"+"载人数(/:辆)"+" "+""+"\t"+"载重量(/:吨)"+"\t"+"租金");
Car[] car={new Car(0,"大卡车",0,800,1000),
new Car(1,"小货车",0,500,600),
new Car(2,"大巴车",40,0,500),
new Car(3,"中士",30,0,350),
new Car(4,"小皮卡",3,200,500)
};
Scanner s=new Scanner(System.in);
System.out.println("请输入车的序号:");
int a=s.nextInt();
for(int i=0;i<car.length;i++){
if(a==car[i].num){
System.out.println(car[i].name);
System.out.println("请输入你需要车的辆数:");
int b=s.nextInt();
System.out.println("请输入所需租的天数:");
int d=s.nextInt();
System.out.println("你此次共需花费"+car[i].pricebd+"元!");
}
}
}
public static void main(String[] args) {
new Text().show();
}
}
共同学习,写下你的评论
评论加载中...
作者其他优质文章