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