在 c++ 中保留两位小数输出有两种方法:1. 使用 std::fixed 和 std::setprecision 控制输出流格式化,如:cout
如何在 C++ 中保留两位小数输出?
在 C++ 中保留两位小数输出有两种方法:
1. 使用 std::fixed 和 std::setprecision
此方法通过控制输出流的格式化来实现。
<code class="cpp">#include <iostream>
#include <iomanip>
using namespace std;
int main() {
double value = 123.456789;
// 设置保留两位小数
cout </iomanip></iostream></code>
输出:
<code>123.46</code>
2. 使用 std::to_string 和 std::substr
此方法涉及将数字转换为字符串,然后提取所需的小数位数。
<code class="cpp">#include <iostream>
#include <string>
using namespace std;
int main() {
double value = 123.456789;
// 转换为字符串
string str = to_string(value);
// 提取两位小数
string result = str.substr(0, str.find('.') + 3);
cout </string></iostream></code>
输出:
<code>123.46</code>
以上就是c++++中如何保留2位小数输出的详细内容,更多请关注编程网其它相关文章!