某运输公司,官网上可以让用户根据所托运的货物重量和运输距离来自助计算送货费,每公里每吨货物 的基本运费为10元,货物重量为weight,距离为space,折扣为discount,距离越远运费越低。 总运费freight的计算公式为:f=10*weight*space*(1-discount) space<250km 无折扣 250<=space<500 2%折扣 500<=space<1000 5%折扣 1000<=space<2000 8%折扣 2000<=space<3000 10%折扣 2000<space 15%折扣
var space=parseInt(prompt("请输入运送距离")); var weight=parseInt(prompt("请输入货物重量(单位吨)")); var discount; var freight; if (space<250){ discount=0; } else if (250<=space<500){ discount=0.02; }else if(500<=space<1000){ discount=0.05; }else if(1000<=space<2000){ discount=0.08; }else if(2000<=space<3000){ discount=0.1; }else if(2000<=space<3000){ discount=0.15; } freight=10*weight*space*(1-discount); console.log("你的运费是:"+freight);