标签:浮点型 .com parse ram 浮点数 精度 jsp 浮点 分享
输入a ,b ,c 三个数对应整形,单精度浮点型,双精度浮点型
<%
int a=Integer.parseInt(request.getParameter("a")); 强转为int型
float b=Float.parseFloat(request.getParameter("b"));
double c=Double.parseDouble(request.getParameter("c"));
%>
<%=a+" " %><%=b+" " %><%=c %>
标签:浮点型 .com parse ram 浮点数 精度 jsp 浮点 分享
原文地址:https://www.cnblogs.com/skjy/p/9141609.html