我的代码是
#include
#include
using namespce std;
int main()
{
ofstream Hello_test;
Hello_test.open("Hello.txt");
Hello_test<<"Test...\nTest..."<
}
然后我的 Hello.txt 是
Test...
Test...
Hello World
不过,当我把 Hello.txt 从 linux 平台移去 windows 平台
我的 Hello.txt 是
Test...Test...Hello World
各位大大,我想问我是不是做错了什么?
请指教指教!!