java急求详细解答过程,菜鸟求解答。。。
发布网友
发布时间:2023-08-11 00:13
我来回答
共3个回答
热心网友
时间:2023-08-11 05:25
import java.util.Scanner;
public class Test {
// 判断旺季/淡季
public static int dis(int month){
if(month >= 4 && month <= 9){
return 1; // 旺季
}else{
return 0; // 淡季
}
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String jc = "";
int price = 5000;
int month = 0;
int jj = 0;
System.out.println("请输入你出行的月份: ");
month = sc.nextInt();
System.out.println("请问你选择头等舱还是经济舱? [头等舱输入1,经济舱输入2] : ");
jc = sc.next();
if(dis(month) == 1){ // 旺季
if(jc.equals("1")){
System.out.println("你的机票价格为: " + price * 0.9);
}else if(jc.equals("2")){
System.out.println("你的机票价格为: " + price * 0.6);
}
}else if(dis(month) == 0){ // 淡季
if(jc.equals("1")){
System.out.println("你的机票价格为: " + price * 0.5);
}else if(jc.equals("2")){
System.out.println("你的机票价格为: " + price * 0.4);
}
}
}
}
热心网友
时间:2023-08-11 05:25
这不是北大青鸟书上的题么,是说怎么那么熟悉
热心网友
时间:2023-08-11 05:25
追答
自己把java前边的东西加上就行了,网上就有