- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我目前很难将第一个条件测试的输出结果四舍五入到小数点后第二位。当数量等于 5 时,将其乘以两个选择中的任何一个,结果将得到一个小数点右侧有 6 个以上空格的数字。当我尝试将 .toFixed 附加到任何内容时,它指出它不能将 toFixed(int) 应用于基本类型 double,即使我放置链接到 double 的新字符串变量也是如此。
我只是想将输出四舍五入到小数点后第二位。任何帮助将不胜感激。
更新!!!感谢 muzahidbechara 的协助。他建议放置代码
String result = String.valueOf(new BigDecimal(calc).setScale(2, BigDecimal.ROUND_HALF_UP));
经过一番折腾后,在 muzahidbechara 的额外帮助下,我发现代码需要被删除,因为存在我不知道的优先顺序。
再次感谢 muzahidbechara 的帮助。如果其他人也遇到过这种麻烦,请为他的答案投票。
我将代码放置在下面的 .jsp 文件中,以便您可以看到我将其放置的位置。总体输出尚未完成(就 html 代码而言),这是我明天要处理的事情。
我放置在 Tomcat webapp/root 文件夹中的 HTML 文件
<!doctype html>
<html>
<head>
<!--
Name: Student
Date: 07APR16
Program Description: Movie Rental Scenario
-->
<style>
body {font-family:arial;}
table.inner {border:2px solid black;margin-left: auto;margin-right: auto;background-color:rgb(128,170,255);}
table.outer {border:2px solid black;margin-left: auto;margin-right: auto;}
th {font-weight:normal;font-variant:small-caps;}
input {background-color:rgb(204,230,255);}
input.number {text-align:center;}
p.top {font-weight:bold;font-size:15px;font-variant:small-caps;}
p.bottom {text-align:"center";font-weight:bold;font-style:italic;font-size:15px;}
input.footer {margin-left: auto;margin-right: auto}
h5 {text-decoration:underline;}
h5.misc1 {margin:0px 0px -10px 0px;}
h5.misc2 {margin:0px 0px -20px 0px;}
</style>
</head>
<body>
<table class="outer" cellpadding="10px" border="1">
<tr>
<th>
<form method="post" action="videorental.jsp">
<p class="top">Please provide contact information in the fields below</p>
<table class="inner" cellpadding="10px" border="1">
<tr>
<th>
<input type="text" id="fname" name="fname" placeholder="Firstname" required />
<input type="text" id="lname" name="lname" placeholder="Lastname" required /><br />
<br />
<input type="text" id="email" name="email" placeholder="email@example.net" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,3}$" title="The email address you entered is invalid, please check to ensure you're using a valid email address that fits the formate email@example.net" style="width:288px;" required /><br />
</th>
</tr>
</table>
<br />
<p class="bottom">Please provide additional information below</p>
<table class="inner" cellpadding="10px" border="1">
<tr>
<th>
<h5 class="misc1">Number of movies to rent</h5><br />
<input class="number" type="text" name="quant" placeholder="##" pattern="[0-9]{1,2}" title="Please input a number between 1-99" style="width:20px" required/><br />
<br />
<h5 class="misc2">Which type of movie<h5>
<input type="radio" id="type" name="type" value="1" required />DVD (Cost per: $2.99)<br />
<input type="radio" id="type" name="type" value="2" required />Blu-ray (Cost per: $3.99)<br />
</th>
</tr>
</table>
<br />
<input class="footer" type="submit" value="Submit" />
<input type="reset" value="Reset" />
</th>
</tr>
</table>
</form>
</body>
</html>
我放置在 Tomcat webapp/root 文件夹中的服务器端 Javascript 文件
<!DOCTYPE html>
<html>
<head>
<style>
body {font-family:arial;}
table {border:2px solid black;margin-left: auto;margin-right: auto;background-color:rgb(128,170,255);}
th {font-weight:normal;font-variant:small-caps;padding-left:500px;text-align:right;}
td {text-align:center;}
</style>
</head>
<body>
<%
/*
Name: Student
Date: 07APR16
Program Description: Movie Rental Scenario
*/
//Received Data
String first = request.getParameter("fname");
String last = request.getParameter("lname");
String mail = request.getParameter("email");
double num1 = Double.parseDouble(request.getParameter("quant"));
byte choice = Byte.parseByte(request.getParameter("type"));
double calc = 0.0;
double answer = 0.0;
// Condition Testing 1
if (choice == 1)
{
calc = num1 * 2.99;
}
else if (choice == 2)
{
calc = num1 * 3.99;
}
// Condition Testing 2
if (choice == 1)
{
answer = 2.99;
}
else if (choice == 2)
{
answer = 3.99;
}
String result = String.valueOf(new java.math.BigDecimal(calc).setScale(2, java.math.BigDecimal.ROUND_HALF_UP));
//Display Results
out.print("First-name = " + first);
out.print("Last-name = " + last);
out.println("<BR>");
out.print("Email Address = " + mail);
out.println("<table border=1>");
out.println("<tr>");
out.println("<th>");
out.print("Price for type of rental:<td>" + answer);
out.println("</td>");
out.println("</th>");
out.println("</tr>");
out.println("<tr>");
out.println("<th>");
out.print("Number of movies to rent:<td>" + num1);
out.println("</td>");
out.println("</th>");
out.println("</tr>");
out.println("<tr>");
out.println("<th>");
out.println("<td>");
out.println("==========");
out.println("</td>");
out.println("</th>");
out.println("</tr>");
out.println("<tr>");
out.println("<th>");
out.print("Total:<td>" + result);
out.println("</td>");
out.println("</th>");
out.println("</tr>");
out.println("</table>");
%>
</body>
最佳答案
首先,double calc
是一个原始类型变量,因此没有可用的方法,因为它不是对象。
其次,即使您将Double calc
(double基元的包装类)声明为对象,仍然没有名为toFixed()
的方法。
您可以使用java.math.BigDecimal
来实现像Javascript toFixed()
一样的精度:
String result = String.valueOf(new BigDecimal(calc).setScale(2, BigDecimal.ROUND_HALF_UP));
关于java - 无法对基本类型 double 调用 toFixed(int),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36519076/
下面的代码有效,我觉得double(double)和double(*)(double)没有区别,square和 &square,我说得对吗? #include double square(doubl
我知道我的作业很草率,这是我在这门课上的第 4 次作业。任何帮助将不胜感激,谢谢。 double getPrincipal(0); double getRate(0); double getYe
我遇到了那个错误,当我使用类时,我在使用函数指针时遇到了这个错误。我的函数'ope'函数我该如何解决 evaluator::function(){ double (*ope) (dou
问题://故事从哪里开始 Graphics 类型中的方法 drawLine(int, int, int, int) 不适用于参数 (double, double, double, double) g.
我有一张 map> m1 形式的 map .我可以将其复制到 map m2 形式的 map 吗?这样键是相同的,并且 m2 中的值是 get(m1->second) 不使用循环?谢谢! 最佳答案 这样
有没有办法获取vector> 的“.first”和“.second”的连续内存? ?我的意思是: void func(int N, double* x, double* y) { for (i
我正在尝试将自定义 lambda 传递给需要函数指针的函数(更准确地说是 zero 中的 Brent library 函数)。 我的想法是,我将使用参数创建一次 lambda,然后用多个值对其求值 x
这是一个很简单的问题,让我很困惑。 我收到一个源文件的以下错误,但另一个没有: 4 src/Source2.cpp:1466: error: no matching function for cal
struct CalculatorBrain { private var accumulator: Double? func changeSign(operand: Double) -
在我正在进行的项目中,我尝试使用 curlpp库来发出一个简单的 html GET 请求。当我将 cpp 文件传递给 g++ 时,出现以下错误: /usr/local/include/curlpp
不使用double就能获得quadruple精度超过16位的数字吗?如果可能的话,这取决于编译器还是其他?因为我知道有人说他使用double精度,并且具有22位精度。 最佳答案 数据类型double
我正在寻找有关特斯拉 GPU 中硬件如何实现 double 的信息。我读到,两个流处理器正在处理单个 double 值,但我没有找到 nvidia 的任何官方论文。 提前致谢。聚苯硫醚为什么大多数 G
这个问题在这里已经有了答案: Passing capturing lambda as function pointer (10 个答案) 关闭 2 年前。 我有这个错误 error: cannot
情况:我有一个元组列表,其中添加了一个元组: List> list = new List>(); list .Add(new Tuple(2.2, 6.6)); 一切似乎都还好。但是......在 D
我有一个 JList,里面有一堆名字,还有一个包含这些名字值的数组 final Double[] filmcost = { 5.00, 5.50, 7.00, 6.00, 5.00 }; 我想做的是,
我试图找出牛顿法来求方程的根。这个错误出来了,我无法处理。 double fn(double n){ return sin(n)+log(n)-1; } double f1n(double n
我有一个 junit 测试断言两个 Double 对象,具有以下内容: Assert.assertEquals(Double expected, Double result); 这很好,然后我决定将其
我正在尝试引入部分数据文件来填充数组,用户尝试了三次输入正确的数据文件名。我一再遇到这些错误。我知道像 arr 这样的数组只是一个指向内存块的指针。 #include #include #incl
我正在尝试完成复习题(为即将到来的编程决赛),但是,我无法解决这个问题,因为我不断收到错误(标题)。正如预期的那样,我将发布问题和我尝试的解决方案。 问题: 给定以下函数定义:void swap(do
任何人都知道如何实现这一目标。我已经尝试了通常的公式,但我只得到正数 Double.NEGATIVE_INFINITY) return d; } } 这将以相同的概率
我是一名优秀的程序员,十分优秀!