题解 | #计算商场折扣#

计算商场折扣

http://www.nowcoder.com/practice/cf4dcda7bf974f83afe38af4b14946a7

import java.util.*;

public class Main { public static void main(String[] args) { Scanner console = new Scanner(System.in); int price = console.nextInt(); int cost = 0;

    //write your code here......
    if(price < 1){
        cost = (int)price;
    }else if(price >=5000){
        cost = (int)(price * 0.6);
    }else if(price >=2000){
        cost = (int)(price * 0.7);
    }else if(price >=500){
        cost = (int)(price * 0.8);
    }else if(price >= 100){
        cost = (int)(price * 0.9);
    }else{
        cost = price;
    }

    System.out.println(cost);
}

}

全部评论

相关推荐

Hello_WordN:咱就是说,除了生命其他都是小事,希望面试官平安,希望各位平时也多注意安全
点赞 评论 收藏
分享
10-30 23:23
已编辑
中山大学 Web前端
去B座二楼砸水泥地:这无论是个人素质还是专业素质都👇拉满了吧
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务