作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果有任何建议帮助我弄清楚如何去掉“IRA 投资金额”和“储蓄和 IRA 金额总计”的两组小数,我将不胜感激。
我想要达到的预期输出是:
Enter the gross pay:
Enter the savings rate %:
Enter the IRA rate %:
Gross pay: 1000.0
Savings rate %: 10.0
Savings amount: 100.0
IRA rate %: 5.0
IRA investment amount: 50.0
Total of savings and IRA amounts: 150.0
我不断收到此输出:
Enter the gross pay:
Enter the savings rate %:
Enter the IRA rate %:
Gross pay:4 $1000.0
Savings rate %: 10.0
Savings amount: 100.0
IRA rate %: 5.0
IRA investment amount: 100.050.0 // See here
Total of savings and IRA amounts: 100.050.0 // See here
这是我到目前为止所写的内容。
import java.util.Scanner;
public class Main_02 {
public static void main (String[]args) {
Scanner console = new Scanner(System.in);
double grossPay = 0.0; // First number to average
double savingsRate = 0.0; // Second number to average
double iraRate = 0.0; // Average of the input values
double savingAmt = 0.0;
double iraAmt = 0.0;
double totalSavings = 0.0;
// Input the two numbers
System.out.print("Enter the gross pay: ");
grossPay = console.nextDouble();
System.out.print("Enter the savings rate %: ");
savingsRate = console.nextDouble();
System.out.print("Enter the IRA rate %: ");
iraRate= console.nextDouble();
// Calculate the average of the two numbers
savingAmt = (grossPay * savingsRate) / 100.0;
iraAmt = (grossPay * iraRate) / 100.0;
totalSavings = math.ceil(savingAmt + iraAmt);
// Output the results
System.out.println("Gross pay:4 $" + grossPay);
System.out.println("Savings rate %: " + savingsRate);
System.out.println("Savings amount: " + savingAmt);
System.out.println("IRA rate %: " + iraRate);
System.out.println("IRA investment amount: " + savingAmt + iraAmt);
System.out.println("Total of savings and IRA amounts: " + savingAmt + iraAmt);
}
最佳答案
正在将其转换为字符串
System.out.println("IRA investment amount: " + savingAmt + iraAmt);
所以改为
System.out.println("IRA investment amount: " + (savingAmt + iraAmt));
我还可以建议您使用 System.printf
作为最后一行
System.out.printf ("Total of savings %f and IRA amounts %f %n", savingAmt , iraAmt);
如果您只想打印 iraAmt
(50.0),则不要添加 savingAmt
System.out.println("IRA investment amount: " + (iraAmt));
关于java - 计算总工资、储蓄和投资,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46047560/
就目前情况而言,这个问题不太适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、民意调查或扩展讨论。如果您觉得这个问题可以改进并可能重新开放,visit
我是一名优秀的程序员,十分优秀!