代码拉取完成,页面将自动刷新
package java59_0319;
import java.util.Scanner;
public class Zy3 {
public static void main(String[] args) {
/*
* 假如你准备去海南旅游,现在要在网上订购机票。 机票的价格受季节影响、而且头等舱、商务舱、经济舱价格也不同。
* 假设机票原价为5000元,4~10月为旺季,旺季头等舱9折,商务舱8折、经济舱7折,其也月份为淡季,淡季头等舱5折,商务舱4折、经济舱3折。
* 请编写Java程序,根据出行的月份和选择的舱位输出实际的机票价格
*
*/
Scanner input = new Scanner(System.in);
System.out.println("请输入要出行的月份");
int month = input.nextInt();
if (month >= 4 && month <= 10) {
System.out.println("该月份为旺季");
}
System.out.println("请输入舱位等级");
String cw = input.next();
switch (cw) {
case ("头等舱"):
System.out.println("价格为" + 5000 * 0.9);
break;
case ("商务舱"):
System.out.println("价格为" + 5000 * 0.8);
break;
case ("经济舱"):
System.out.println("价格为" + 5000 * 0.7);
break;
default:
if (month >= 1 && month < 4 || month > 10 && month <= 12) {
System.out.println("该月份为淡季");
}
switch (cw) {
case ("头等舱"):
System.out.println("价格为" + 5000 * 0.5);
break;
case ("商务舱"):
System.out.println("价格为" + 5000 * 0.4);
break;
case ("经济舱"):
System.out.println("价格为" + 5000 * 0.3);
break;
default:
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。