- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
这是我的代码:
// This program demonstrates the use of flags.
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main()
{
string filename; bool tf; double number;
cout << "Name a file to create/overwrite: ";
cin >> filename;
ofstream outfile (filename.c_str());
if(outfile.fail())
{
cout << "Creating/Overwriting the file has failed.\nExiting...\n";
return 1;
}
cout << "Give me a boolean (0/1): "; cin >> tf;
cout << "Give me a large number with decimal points: "; cin >> number;
outfile.setf(ios_base::boolalpha); // Turns on boolalpha flag.
outfile << "Here's a boolean: " << tf << endl;
outfile.unsetf(ios_base::boolalpha); // Unsets boolalpha flag.
outfile << "Here's your number: " << number << endl;
outfile.setf(ios_base::scientific); // Turns on scientific notation flag.
outfile << "Here's your number is scientific notation: " << number << endl;
outfile.setf(ios_base::fixed); // When possible, floating point numbers will not appear in scientific notation.
outfile << "Here's your number in fixed notation: " << number << endl;
outfile.setf(ios_base::hex); // Numbers will appear in hexadecimal format.
outfile << "Here's your number in hexadecimal format: " << number << endl;
outfile.setf(ios_base::oct, ios_base::uppercase); // Numbers will appear in uppercase, octal format.
outfile << "Here's your number in octal format: " << number << endl;
return 0;
}
当我运行这个...
test.txt 的内容:
Here's a boolean: false
Here's your number: 3491.67
Here's your number is scientific notation: 3.491670e+03
Here's your number in fixed notation: 3491.67
Here's your number in hexadecimal format: 3491.67
Here's your number in octal format: 3491.67
为什么当我设置“hex”和“oct”标志时,它们不起作用?
在文本文件中,我期望“十六进制形式:”和“八进制格式:”旁边不是“3591.67”。
我是否错误地实现了标志?
最佳答案
不幸的是,八进制和十六进制打印仅适用于整数,而不适用于 double 。参见 http://stdcxx.apache.org/doc/stdlibug/28-3.html
如果你想使用 setf,它应该是:
outfile.setf(ios_base::hex,ios_base::basefield);
.或者,管道输入 std:hex,即:
outfile << std::hex;
.
关于c++ - 为什么 std::hex 和 std::oct 标志不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32029902/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!