// 2.3 函数表达式可以传递参数还可以有返回值,使用方法和前面具名函数类似let sum function (x, y) { // 形参xx||0yy||0return x y}let re sum() // 实参console.log(re) // 3 function sum(x 0, y 0) {return x y}console.log(sum()) // 0console.log(s…
需求:给商品打折
1、根据产品名称返回价格 2、查询商品的折扣率 3、计算新价格
源码清单
Data
public class DiscountShop {private final String name;private final Random random;public DiscountShop(String name) {this.name name;random new Random(name…