代码拉取完成,页面将自动刷新
import java.util.Scanner;
public class Code005 {
public static void main(String[] args) {
/*会员积分*/
System.out.print("请输入会员积分:");
Scanner input = new Scanner(System.in);
int custScore = input.nextInt();
double discount;
if(custScore < 2000){
discount = 0.9;
}else if(custScore >=2000 && custScore < 4000){
discount = 0.8;
}else if(custScore >= 4000 && custScore < 8000){
discount = 0.7;
}else{
discount = 0.6;
}
System.out.println("该会员享受的折扣是:" + discount);
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。