package car_rental;
import java.util.Arrays;
import java.util.Scanner;
public class CarRental {
public static Scanner select=new Scanner(System.in);
public static void main(String[] args) {
System.out.println("欢迎使用答答租车系统\n请问您是否要租车:1是\t0否");
int choice=input1();
switch(choice) {
case 1:
System.out.println("您可租车的类型及其价目表:\r\n" +
"序号 \t汽车名称 \t租金 容量\r\n" +
"1 奥迪A4 500元/天 载人:4人\r\n" +
"2 马自达6 400元/天 载人:4人\r\n" +
"3 皮卡雪6 450元/天 载人:4人\r\n" +
"4 金龙 800元/天 载人:20人\r\n" +
"5 松花江 400元/天 载货:4t\r\n" +
"6 依维柯 1000元/天 载货:20t\r\n" );
System.out.println("请输入要租的数量:");
int num =input1();
int array[]= new int [num];
int no1 = 0;
int i=1;
while(true) {
for(i=1;i<=num;i++) {
System.out.println("请输入你选择车辆的序号:");
no1=input1();
System.out.println("请输入第"+i+"辆车的序号:");
if(no1<=100) {
array[i-1]=no1;
System.out.println("往数组里存的是"+array[i-1]);
}else {
System.out.println("您所输入的序号有误,请重新输入!");
break;
}
}
break;
}
System.out.println("请输入要租的天数:");
int day=input1();
System.out.println("\n\n\n");
System.out.println("***选车清单***:"+ Arrays.toString(array));
for(int j=0;j<=num;j++) {
for(int n=0;n<j;n++) {
System.out.println("******:"+ array[j]*day*500);
//后面这里我不知道该怎么统计选中的车,
//怎么把选中的车和其他的联系起来统计金额
}
}
System.out.println("***租车天数***:"+day+"天");
break;
case 0:
System.out.println("谢谢您的光临!");
break;
case -1:
System.out.println("-1您的输入有误,请重新输入\ntips:只能输入1或0");
break;
default:
System.out.println("default您的输入有误,请重新输入\ntips:只能输入1或0");
break;
}
}
private static int input1() {
int command1;
try {
command1=select.nextInt();
return command1;
}catch(Exception e ) {
select=new Scanner(System.in);
return -1;
}
}
}