Board logo

標題: 2025/2/7 課堂重點(若恩) [打印本頁]

作者: 郭竑志    時間: 2025-2-7 20:06     標題: 2025/2/7 課堂重點(若恩)

本帖最後由 郭竑志 於 2025-2-7 21:21 編輯

[課堂重點]
405 字串與檔案處理 (讀取檔案並修改)
406 字串與檔案處理 (判斷字元並修改)
407 字串與檔案處理 (字元刪除及另存新檔)
[今日作業]
409 字串與檔案處理 (字串加密)
作者: 何若恩    時間: 2025-2-7 20:42

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

  3. int main(int argc, char** argv) {
  4.     ifstream ifs;
  5.     ifs.open("C:\\Users\\student\\Downloads\\read.txt");
  6.     int n;
  7.     string s;
  8.     while(ifs>>s){
  9.         cin>>n;
  10.         for(int i=0;i<n;i++){
  11.             s[i]=char(n+'0');
  12.         }
  13.     cout<<s<<endl;
  14.     }
  15.     ifs.close();
  16.         return 0;
  17. }
複製代碼

作者: 何若恩    時間: 2025-2-7 21:05

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

  3. int main(int argc, char** argv) {
  4.     string str1="qwertyuiopasdfghjklzxcvbnm";
  5.     string str2="wertyuioppsdfghjkllxcvbnmm";
  6.     string s;
  7.     while(cin>>s){
  8.         for(int i=0;i<s.size();i++){
  9.             int index;
  10.             index=str1.find(s[i]);
  11.             cout<<str2[index];
  12.         }
  13.     }
  14.     return 0;
  15. }
複製代碼

作者: 何若恩    時間: 2025-2-7 21:28

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

  3. int main(int argc, char** argv) {
  4.     ifstream ifs;
  5.     ofstream ofs;
  6.     ifs.open("C:\\Users\\student\\Downloads\\read(1)");
  7.     ofs.open("C:\\Users\\student\\Downloads\\write.txt");
  8.     string s;
  9.     getline(cin,s);
  10.     while(cin>>s){
  11.         for(int i=0;i<s.size();i++){
  12.             if(s[i]=='*')
  13.             continue;
  14.             ofs<<s[i];
  15.         }
  16.     }
  17.     return 0;
  18. }
複製代碼

作者: 何若恩    時間: 2025-3-14 20:57

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

  3. int main(int argc, char** argv) {
  4.     ifstream ifs;
  5.     ofstream ofs;
  6.     ifs.open("C:\\Users\\student\\Downloads\\read.txt");
  7.     ofs.open("C:\\Users\\student\\Downloads\\write.txt");
  8.     string s;
  9.     getline(ifs, s);
  10.     for(int i=0;i<s.size();i++){
  11.         s[i]=s[i]+2;
  12.     }
  13.     cout<<s<<endl;
  14.     ofs<<s;
  15.     return 0;
  16.     }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2