ここからどこへ行けばいいのかわからない。私は何かが後に行く必要があることを知っていますifstr.get(c)
。呼び出されたテキストファイルにある正確な単語をコピーしますが、charsまたは?project.txt
を含む単語を削除する必要があります。どんな助けでも素晴らしいでしょう。ありがとう:)<
>
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
string line;
char c;
ifstream ifstr("project.txt");
ofstream ofstr("past.txt");
if(ifstr.fail()){
cout<<"error!"<<endl;
} // if
ifstr.get(c);
while(!ifstr.eof()) {
cout<<c;
ifstr.get(c);
ofstr<<line<<endl;
} // while
cout<<endl<<"copy complete"<<endl;
ifstr.close();
ofstr.close();
system ("pause");
return 0;
} // main