返回列表 發帖

2024/02/03 上課重點(家鉌)

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     ifstream op;
  6.     ofstream ed;
  7.     op.open("read.txt");
  8.     ed.open("write.txt");
  9.     string a;
  10.     getline(op,a);
  11.     for(int i=0;i<a.size();i++)
  12.     {
  13.         if(a[i]!='*')
  14.             ed<<a[i];
  15.     }
  16.     op.close();
  17.     ed.close();
  18.     return 0;
  19. }
複製代碼

TOP

返回列表