机票价格按照淡季旺季、头等舱和经济舱收费、输入机票原价、月份和头等舱或经济舱
按照如下规则计算机票的价格:
旺季(5-10月)若为头等舱则打9折;经济舱打8.5折
淡季(11月-4月)若为头等舱则打7折;经济舱打6.5折
import java.util.Scanner;
public class Sell {
/*
机票价格按照淡季旺季、头等舱和经济舱收费、输入机票原价、月份和头等舱或经济舱
按照如下规则计算机票的价格:
旺季(5-10月)若为头等舱则打9折;经济舱打8.5折
淡季(11月-4月)若为头等舱则打7折;经济舱打6.5折
*/
//分析
//1.输入机票原价、月份和头等舱或经济舱
//2.判断是旺季还是淡季
//3.判断是头等舱还是经济舱
//4.按照对应折扣计算出价格
//5.输出结果
public static void main(String[] args){
/*
System.out.println("请输入机票原价");
Scanner buy = new Scanner(System.in);
System.out.println("月份");
Scanner mouth = new Scanner(System.in);
System.out.println("舱型");
Scanner type = new Scanner(System.in);
*/
System.out.println("请输入机票原价、月份和舱型(用空格隔开):");
Scanner scanner = new Scanner(System.in); // 创建一个 Scanner 对象
double buy = scanner.nextDouble(); // 读取机票原价
int month = scanner.nextInt(); // 读取月份
int type = scanner.nextInt(); // 读取舱型
if(month>=5&&month<=10){
if(type==1){
System.out.println("打折后价格为"+(buy*0.9));
}
if(type==2){
System.out.println("打折后价格为"+(buy*0.85));
}
}
if(month>=11||month<=4){
if(type==1){
System.out.println("打折后价格为"+(buy*0.7));
}
if(type==2){
System.out.println("打折后价格为"+(buy*0.65));
}
}
}
}