机票预订java代码 机票预定系统代码
java编程。订购机票,机票的价格受到季节旺季。淡季影响,而且头等藏跟经济舱的价格也不一同。
/**
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:域名与空间、网站空间、营销软件、网站建设、永吉网站维护、网站推广。
* 获取头等舱票价
*
* @param basePrice - 基础票价
* @return
*/
public double getFirstClassPrice(double basePrice) {
return isMidseason() ? basePrice * 0.9 : basePrice * 0.5;
}
/**
* 获取经济舱票价
*
* @param basePrice - 基础票价
* @return
*/
public double gettOuristClassPrice(double basePrice) {
return isMidseason() ? basePrice * 0.8 : basePrice * 0.4;
}
/**
* 判断是否为旺季
*
* @return
*/
private boolean isMidseason() {
int month = Calendar.getInstance().get(Calendar.MONTH) + 1;
return month = 4 month = 10;
}
上面那个好看些。看了下你的要求,貌似不太符合- -。
重写了个
/**
* 获取价格
*
* @param basePrice - 基础价格
* @param month - 月份
* @param isFirstClass - 是否头等舱
* @return
*/
public double getPrice(double basePrice, int month, boolean isFirstClass) {
double result;
if (month = 4 month = 10) {
if (isFirstClass) {
result = basePrice * 0.9;
} else {
result = basePrice * 0.8;
}
} else {
if (isFirstClass) {
result = basePrice * 0.5;
} else {
result = basePrice * 0.4;
}
}
return result;
}
java编程,机票例题纠正改错,谢谢
在你的基础上稍稍改动:
import java.util.Scanner;
public class JiPiao {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("请输入您要出行的月份:");
int YueFen = input.nextInt();
System.out.println("请问您选择头等舱还是经济舱?头等舱输入1,经济舱输入2");
int XuanZe = input.nextInt();
if (XuanZe == 1 || XuanZe == 2) {
} else {
System.out.println("请输入数字1,2");
}
double JiaGe;
if (YueFen = 10 YueFen = 4) {
if (XuanZe == 1) {
JiaGe = 5000 * 0.9;
System.out.println("机票的价格为:" + JiaGe);
} else if (XuanZe == 2) {
JiaGe = 5000 * 0.8;
System.out.println("机票的价格为:" + JiaGe);
} else {
System.out.println("输入错误");
}
} else if (YueFen = 1 YueFen = 3 || YueFen == 11 || YueFen == 12) {
if (XuanZe == 1) {
JiaGe = 5000 * 0.5;
System.out.println("机票的价格为:" + JiaGe);
} else if (XuanZe == 2) {
JiaGe = 5000 * 0.4;
System.out.println("机票的价格为:" + JiaGe);
} else {
System.out.println("输入错误");
}
}
}
}
JAVA机票预订题目,学的不好老是不会
1)查询数据库,直接显示
2)查询数据库,当座位状态为空时,可以预定。点击预定,更新座位信息,更新我的预定信息,
3)写好jsp调用self.print
4)不懂什么是以符号形式输出
网站名称:机票预订java代码 机票预定系统代码
本文路径:http://myzitong.com/article/ddoccdi.html