#include
#include
#include
using namespace std;
int main()
{
char str[1024];
ofstream file("out.txt");
cout<<"输入字符串:";
gets(str); //用cin的话会有空格截断的问题
file<
return 0;
}
你得把你需要写进文件的数据保存到对应的变量中,举个例子:
#include
#include
#include
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
ofstream file("test.txt");
string str="123456ABC";
int num=310;
file<
return 0;
}
这样就把
310
123456ABC
写到文件里面了
#include
#include
using namespace std;
int main(int argc, char* argv[])
{
ofstream ofs("test.txt");
cout << "请随便输入点啥子:“ << endl;
copy(cin, ofs, 1024);
}