返回列表 發帖

407 字串與檔案處理 (字元刪除及另存新檔)

1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。

2. 設計說明:
請撰寫一程式,讀取read.txt檔案內容,將檔案中的「*」符號全部刪除,並寫入至write.txt檔案。

提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。

3. 輸入輸出:
輸入說明
讀取read.txt檔案內容

輸出說明
寫入至write.txt檔案

範例輸入



範例輸出



附件:read.txt


本帖隱藏的內容需要回復才可以瀏覽

本帖最後由 張絜晰 於 2024-3-15 20:17 編輯
  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     ifstream ifs;
  6.     ifs.open("read.txt");
  7.     ofstream ofs;
  8.     ofs.open("write.txt");
  9.     string str;
  10.     getline(ifs,str);
  11.     for(int a=0;a<str.length();a++){
  12.         if(str[a]!='*'){
  13.             ofs<<str[a];
  14.         }
  15.     }
  16.     return 0;
  17. }
複製代碼
Attention Seeker </3

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5. ifstream ifs;
  6. ifs.open("read.txt");
  7. ofstream ofs;
  8. ofs.open("write.txt");
  9. string str;
  10. getline(ifs,str);
  11. for(int i=0;i<str.length();i++)
  12. {
  13.     if(str[i]!='*')
  14.     {
  15.         ofs<<str[i];
  16.     }
  17. }
  18.     return 0;
  19. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     ifstream ifs;
  6.     ifs.open("read.txt");
  7.     ofstream ofs;
  8.     ofs.open("write.txt");
  9.     string str;
  10.     getline(ifs,str);
  11.     for(int i=0;i<str.length();i++)
  12.     {
  13.         if(str[i]!='*')
  14.         {
  15.             ofs<<str[i];
  16.         }
  17.     }

  18.     return 0;
  19. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     ifstream ifs;
  6.     ifs.open("read.txt");
  7.     ofstream ofs;
  8.     ofs.open("write.txt");
  9.     string str;
  10.     getline(ifs,str);
  11.     for(int i=0;i<str.length();i++)
  12.     {
  13.         if(str[i]!='*')
  14.         {
  15.             ofs<<str[i];
  16.         }
  17.     }
  18.     return 0;
  19. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     cin.tie(0);
  6.     cin.sync_with_stdio(0);
  7.     ifstream ifs;
  8.     ifs.open("read.txt");
  9.     ofstream ofs;
  10.     ofs.open("write.txt");

  11.     string str;
  12.     getline(ifs,str);
  13.     for(int i=0;i<str.length();i++)
  14.     {
  15.         if(str[i]!='*')
  16.         {
  17.             ofs<<str[i];
  18.         }
  19.     }
  20.     return 0;
  21. }
複製代碼

TOP

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

TOP

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

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     cin.tie(0);
  6.     cin.sync_with_stdio(0);
  7.     ifstream ifs;
  8.     ifs.open("read.txt");
  9.     ofstream ofs;
  10.     ofs.open("write.txt");

  11.     string str;
  12.     getline(ifs,str);
  13.     for(int i=0;i<str.length();i++)
  14.     {
  15.         if(str[i]!='*')
  16.         {
  17.             ofs<<str[i];
  18.         }
  19.     }
  20.     return 0;
  21. }
複製代碼

TOP

返回列表