java问题,新手求解关于嵌套if选择结构的11
发布网友
发布时间:2023-09-22 09:39
我来回答
共5个回答
热心网友
时间:2024-11-23 16:39
import java.util.Scanner;
public class MyTest {
public static void main(String[] args) {
System.out.println("请输入是否是会员:是(Y)/否(N)");
Scanner input=new Scanner(System.in);
String isMember=input.nextLine();
System.out.println("请输入购物金额:");
int iCount = Integer.parseInt(input.nextLine(););
if(isMember.equals("N")) {
if(iCount >= 100) {
System.out.println("实际支付:"+iCount*0.9);
} else {
System.out.println("实际支付:"+iCount);
}
} else {
if(iCount >= 200) {
System.out.println("实际支付:"+iCount*0.75);
} else {
System.out.println("实际支付:"+iCount*0.8);
}
}
}
}
热心网友
时间:2024-11-23 16:39
if (是否会员=='Y') {
if (count > 200) {
count = count *0.75;
} else {
couunt = count *0.8;
}
}
else {
if(count>100){
count = count * 0.9;
}
}
return count;
那几位好像都忽视了
普通顾客购物满100元打9折。直接就给打九折了么?
热心网友
时间:2024-11-23 16:40
import java.util.Scanner;
public class Test {
public static void main(String[] args) {
final String VIP_YES = "Y";
Scanner scanner= new Scanner(System.in);
System.out.print("请输入是否是会员:是(Y)/否(N):");
boolean isVip = scanner.next().trim().equalsIgnoreCase(VIP_YES);
System.out.print("请输入购物金额: ");
double money = scanner.nextDouble();
if(isVip){
if(money >= 200){
money = money * 0.75;
}else if(money >= 100){
money = money * 0.8;
}
}else{
if(money >= 100){
money = money * 0.9;
}
}
System.out.println("实际支付:" + money);
}
}
----------------------
C:\Program Files\IBM\RAD 7\jdk\bin>java Test
请输入是否是会员:是(Y)/否(N):y
请输入购物金额: 300
实际支付:225.0
C:\Program Files\IBM\RAD 7\jdk\bin>java Test
请输入是否是会员:是(Y)/否(N):n
请输入购物金额: 100
实际支付:90.0
热心网友
时间:2024-11-23 16:40
import java.util.Scanner;
public class TestPrice {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
System.out.println("请输入购物个金额:");
double num=sc.nextDouble();
System.out.println("请选择是不是会员,是选Y,不是选N,大小写不区分");
String str=sc.next();
double count=0;
if ("Y".equals(str.toLowerCase())){
if (num > 200) {
count = num *0.75;
} else {
count = num *0.8;
}
} else {
count = (num * 0.9);
}
System.out.println("你的实际支付是 : "+count);
}
}
运行结果:
请输入购物个金额:
299
请选择是不是会员,是选Y,不是选N,大小写不区分
Y
你的实际支付是 : 269.1
热心网友
时间:2024-11-23 16:41
注释和方法的参数都给你注明了,望采纳
public class FLY {
public static void main(String[] args) {
System.out.println("¥:" + new FLY().getMoney(5000, true, 5));
}
/**
* @param beginMoney 普通机票的价格
* @param isJingJi 是否是经济舱
* @param month 出行月份
* @return
*/
public double getMoney(double beginMoney, boolean isJingJi, int month){
//如果是经济舱
if(isJingJi){
if(month >=4 || month <= 10){//如果是旺季
return beginMoney * 0.8;
}else{//如果是淡季
return beginMoney * 0.4;
}
}else{//如果是头等舱
if(month >=4 || month <= 10){//如果是旺季
return beginMoney * 0.9;
}else{//如果是淡季
return beginMoney * 0.5;
}
}
}
}
追问可以加下Q吗、
237168253
给我讲解下 谢谢啦。