gpt4 book ai didi

java - 我想将总购买量显示为 11.10 而不是 11.1

转载 作者:行者123 更新时间:2023-12-01 11:58:13 25 4
gpt4 key购买 nike

输入书的价格:10 美元

图书成本:10.00 美元

征收州税:0.80 美元

收取的县税:0.30 美元

总购买价格:11.10 美元

为什么我得到 11.1?

import java.util.Scanner;

public class Program1 {
public static void main(String[] args) {
Scanner kbd = new Scanner(System. in );

double bookCost = kbd.nextDouble();
double stateTax = bookCost * 0.08;
double countyTax = bookCost * 0.03;
double totalCost = bookCost + stateTax + countyTax;

System.out.print("Enter the price of the book: $");

System.out.println();
System.out.println("Book Cost: $" + bookCost);
System.out.println("State Tax Charged: $" + stateTax);
System.out.println("County Tax Charge: $" + countyTax);
System.out.println("Total Purchase Price: $" + totalCost);
}
}

最佳答案

System.out.println( String.format( "%.2f",totalCost ) );

关于java - 我想将总购买量显示为 11.10 而不是 11.1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28198148/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com