- #include <bits/stdc++.h>
- using namespace std;
- int main(int argc, char** argv) {
- ifstream ifs;
- ofstream ofs;
- ifs.open("C:\\Users\\student\\Downloads\\read(1)");
- ofs.open("C:\\Users\\student\\Downloads\\write.txt");
- string s;
- getline(cin,s);
- while(cin>>s){
- for(int i=0;i<s.size();i++){
- if(s[i]=='*')
- continue;
- ofs<<s[i];
- }
- }
- return 0;
- }
複製代碼 |