文道流

#include <iostream>
#include <fstream>
using namespace std;
int main(){ 
	ofstream a;
	string b,c="qwq",d=".txt";
	cin>>b;
	
	for(int i=0;i<100;i++){
		a.open(c+to_string(i)+d);
		a<<b;
		a.close();
		
	}
	return 0;
}

  

posted @ 2023-11-03 20:10  最后一个还有我  阅读(12)  评论(0)    收藏  举报