gpt4 book ai didi

c++ - 希望将最终答案四舍五入到 2 位小数 C++

转载 作者:行者123 更新时间:2023-11-30 00:36:45 26 4
gpt4 key购买 nike

我试图将我的最终答案四舍五入到 2 位小数,所以它是美元和美分。我是编码新手,无法弄清楚。我想在“您需要收取的金额是”这一行中将“w”四舍五入这是我的代码:

#include <iostream>

using namespace std;

int main()
{
string Choice;


float x, w;

cout << "Please enter the amount needed." << endl;
cin >> x;


w = x/(1-0.0275);

cout << "The amount you need to charge is $"<< w << "." << endl;

return (0);

}

最佳答案

根据这里的例子http://www.cplusplus.com/forum/beginner/3600/你可以使用

cout << setprecision(2) << fixed << w << endl;

(fixed 是可选的)

你必须#include <iomanip>

正如 Synxis 所指出的,这仅适用于打印值,它不会更改 w 持有的值

关于c++ - 希望将最终答案四舍五入到 2 位小数 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15189084/

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