摘要: #include <iostream> #include <fstream> using namespace std; int main(){ ifstream a; string b; cin>>b; a.open("qwq.txt"); a>>b; cout<<b; return 0; } 阅读全文
posted @ 2023-11-03 20:11 最后一个还有我 阅读(8) 评论(0) 推荐(0)
摘要: #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( 阅读全文
posted @ 2023-11-03 20:10 最后一个还有我 阅读(12) 评论(0) 推荐(0)