Java卖飞机票

1.机票价格按照淡季旺季、头等舱和经济舱收费。输入机票原价、月份和头等舱或经济舱。用户从键盘输入机票原价、月份、舱位信息,程序计算出相对应的机票价格。
2.机票最终优惠价格的计算方法如下:旺季(5-10月)头等舱9折,经济舱8.5折,淡季(11月到来年4月)头等舱7折,经济舱6.5折。

package study;
import java.util.Scanner;
public class buyTicket {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.println("输入票价:");
        int original = sc.nextInt();//机票原价
        System.out.println("选择月份:");
        int month = sc.nextInt();//月份
        System.out.println("选择 0 头等舱 1 经济舱");
        int level = sc.nextInt();//头等舱或经济舱
        if (month >= 5 && month <= 10) {
            if (level == 0) {
                original = (int) (original * 0.9);
            } else if (level == 1) {
                original = (int) (original * 0.85);
            } else {
                System.out.println("机票无此级别");
            }
        } else if ((month >= 1 && month <= 4) || (month >= 11 && month <= 12)) {
            if (level == 0) {
                original = (int) (original * 0.7);
            } else if (level == 1) {
                original = (int) (original * 0.65);
            } else {
                System.out.println("机票无此级别");
            }
        } else {
            System.out.println("月份输入超过正常值");
        }
        System.out.println("机票最终优惠价格: " + original);
    }
}

你可能感兴趣的:(java,开发语言)