格式化浮点数,C++ format有妙招
在 C++ 中,你可以使用 <iomanip>
库中的 setprecision()
和 setw()
函数来格式化浮点数。以下是一些示例:
- 设定小数点后保留的位数
#include <iostream>#include <iomanip>int main() { double num = 3.1415926;
std::cout << std::fixed << std::setprecision(2) << num << std::endl; // 输出 3.14 return 0;
}
在上面的代码中,std::fixed
表示使用固定小数点表示法,std::setprecision(2)
表示小数点后保留两位数字。
- 设定字段宽度
#include <iostream>#include <iomanip>int main() { double num = 3.1415926;
std::cout << std::setw(10) << std::setprecision(2) << num << std::endl; // 输出 " 3.14" return 0;
}
在上面的代码中,std::setw(10)
表示输出宽度为 10 个字符,不足的字符用空格填充。
- 结合使用
#include <iostream>#include <iomanip>int main() { double num = 3.1415926;
std::cout << std::setw(10) << std::setprecision(2) << std::left << num << std::endl; // 输出 "3.14 " return 0;
}
在上面的代码中,std::left
表示左对齐。
希望这些示例对你有所帮助!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:niceseo6@gmail.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。版权声明:如无特殊标注,文章均为本站原创,转载时请以链接形式注明文章出处。
评论