Board logo

標題: 409 字串與檔案處理 (字串加密) [打印本頁]

作者: 陳曜誌    時間: 2024-9-2 12:46     標題: 409 字串與檔案處理 (字串加密)

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

2. 設計說明:
請撰寫一程式,讀取read.txt檔案內容,將檔案中的小寫英文字母加密,加密方法為所有小寫字母向後偏移2個字母,並將結果寫入至write.txt檔案。

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

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

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

範例輸入



範例輸出



附件:read.txt

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

作者: 曾善勤    時間: 2024-9-4 20:23

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

作者: 錢冠叡    時間: 2024-9-4 20:23

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

作者: 黃裕恩    時間: 2024-9-4 20:24

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

作者: 林劭澧    時間: 2024-9-4 20:25

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

作者: 李彣    時間: 2024-9-4 20:25

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

作者: 侯宣仲    時間: 2024-9-4 20:25

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

作者: 林劭杰    時間: 2024-9-4 20:26

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

作者: 侯宣任    時間: 2024-9-4 20:27

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

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





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