c++如何把一个变量中的值写入文本文件。。。

比如把某字符串赋予一个变量。。。该如何编程。。。
2024-11-28 15:54:52
推荐回答(2个)
回答(1):

修改了一下:
#include //这一句去掉也对,不知为什么
#include
#include

using namespace std;

int main()
{
string ss = "abcddddd";//C++标准库引入了string类,这样你就可以直接给这个对象赋值了
ofstream ofile;
ofile.open("c:\\a.txt");
if (!ofile)
{
cerr << "Can not open the file." << endl;
return 0;
}
ofile << ss.c_str();
ofile.close();

return 0;
}

回答(2):

void main()
{string a="shu ru zi fu";

}