Day12-计算飞机票

机票价格按照淡季旺季、头等舱和经济舱收费、输入机票原价、月份和头等舱或经济舱
按照如下规则计算机票的价格:
旺季(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));
            }
        }

    }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值