我想生成 30 到 80 之间的数字,为此我使用:
this.length=(float)(Math.random()*50+30);
然后我必须将实例的一些参数解析为字符串:
result=this.name+" by "+this.smith+" in "+this.productionYear+" at "+this.length+" length";
它生成如下所示的字符串:
老车由尤塔于 1327 年在 75.341866 长度
我怎么能截断长度以减少小数精度?我想将其设置为点后的 2 位数字。