1 Star 0 Fork 0

姚鑫/第四章作业

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Code005.java 588 Bytes
一键复制 编辑 原始数据 按行查看 历史
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);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/duojiu327/DiSiZhangZuoYe.git
[email protected]:duojiu327/DiSiZhangZuoYe.git
duojiu327
DiSiZhangZuoYe
第四章作业
master

搜索帮助