我希望创建几个.txt文件来存储有关汽车的信息。每个.txt文件都会存储一辆汽车的信息。我将要求用户输入汽车信息,例如CarId,Make,Model等。我希望使用用户给出的CarId来命名.txt文件。如何使用c ++ 11实现这一点?
谢谢!
答案 0 :(得分:0)
你可以试试这个:
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
int main()
{
string filename; // string to take input
ofstream out; // Object to create file
getline(cin, filename); // Taking input for file Name
out.open(filename + ".txt"); // To create .txt file
out.close();
return 0;
}