批量生成数据
#include<bits/stdc++.h>
using namespace std;
int main()
{
ofstream File;
for (int i = 0; i < 100; i++)
{
string tmp = "";
tmp = to_string((i));
File.open("file_" + tmp + ".txt");
File << "abc" << endl;
File.close();
}
return 0;
}
一切伟大的行动和思想,都有一个微不足道的开始。
There is a negligible beginning in all great action and thought.
There is a negligible beginning in all great action and thought.