它不起作用,我需要保留许多文件但名称不同,例如:file1.txt file2.txt file3.txt 其中数字是计数器,计数器是 X。
谢谢。
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
using namespace std;
using std::string;
string ItoStr (int x);
int main(){
string cadena;
int x = 1;
ofstream fs("nombre" + ItoStr(x) + ".txt"); //Fail line
fs << cadena;
fs << cadena;
fs.close();
};
string ItoStr (int x){
string str2;
stringstream ss;
ss << x;
str2 = ss.str();
return str2;
};