#include<iostream>
#include<fstream>
using namespace std;
int main(){
// ios::sync_with_stdio();
// cin.tie(0);
// cout.tie(0);
ofstream ofs;
ofs.open("1.txt",ios::out);
ofs<<"23123"<<endl;
ofs<<"dsadas"<<" "<<"dsasd"<<endl;
ofs.close();
return 0;
}
相同代码的话clion运行 就会有文件生成
#include<fstream>
using namespace std;
int main(){
// ios::sync_with_stdio();
// cin.tie(0);
// cout.tie(0);
ofstream ofs;
ofs.open("1.txt",ios::out);
ofs<<"23123"<<endl;
ofs<<"dsadas"<<" "<<"dsasd"<<endl;
ofs.close();
return 0;
}
相同代码的话clion运行 就会有文件生成