gpt4 book ai didi

c++ cout like c printf 收藏

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

#include <cstdio>
int main(){
float f = 12.f;
printf("%.2f", f);
}

输出 12.00

我如何使用 cout 使用 c++ STL 实现这一点?

尝试过:

#include <iostream>
#include <iomanip>
#include <ios>
using namespace std;
int main(){
float f = 12.f;
cout << setprecision(2) << f << endl;
}

最佳答案

首先,您的语法无效。 12f 应该是 12.f。或 12.0f。其次,为了以定点表示法显示您的号码,请使用 std::fixed .即:

#include <iostream>
#include <iomanip>
// <ios> header not needed
int main()
{
float f = 12.f;
std::cout << std::fixed << std::setprecision(2) << f << std::endl;
}

关于c++ cout like c printf 收藏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26191299/

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