gpt4 book ai didi

c++ - endl 不在输出文件中创建新行

转载 作者:行者123 更新时间:2023-11-30 02:26:15 27 4
gpt4 key购买 nike

这是我的代码

#include <iostream>
#include <fstream>

using namespace std;

int main(int argc, char* argv[])
{

// set up input file
ifstream lInput; // declare an input file variable (object)
ofstream lOutput;
lInput.open(argv[1], ifstream::binary); // open an input file (binary)
lOutput.open(argv[2], ofstream::binary);
if (!lInput.good())
{
// operation failed
cerr << "Cannot open input file " << argv[1] << endl;
return 2; // program failed (input)
}

lOutput << "test" << endl;
lOutput << "test2" << endl;

我当前的输出是

testtest2

我怎样才能做到

test

test2

谢谢你的帮助

编辑:test 为“test”,test2 为“test2”edit2:lOutpt 到 lOutput

最佳答案

C 和 C++ 有两种类型的文件:文本二进制。二进制文件不是文本。他们没有行,所以他们没有行尾。如果您想明智地谈论行尾和其他与文本相关的事情,请使用文本文件。

关于c++ - endl 不在输出文件中创建新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43060787/

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