標題:
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
#include<bits/stdc++.h>
using namespace std;
ifstream ifs;
ofstream ofs;
string str;
int main()
{
ifs.open("read.txt");
getline(ifs, str);
ofs.open("write.txt");
for(int i=0;i<str.length();i++)
{
char c=str[i]+2;
ofs<<c;
}
return 0;
}
複製代碼
作者:
錢冠叡
時間:
2024-9-4 20:23
#include<bits/stdc++.h>
using namespace std;
ifstream ifs;
ofstream ofs;
string str;
int main()
{
ifs.open("read.txt");
getline(ifs, str);
ofs.open("write.txt");
for(int i=0, i<str.length(); i++)
{
char c=str[i]+2;
ofs<<c;
}
return 0;
}
複製代碼
作者:
黃裕恩
時間:
2024-9-4 20:24
#include<bits/stdc++.h>
using namespace std;
ifstream ifs;
ofstream ofs;
string str;
int main()
{
ifs.open("read.txt");
getline(ifs, str);
ofs.open("write.txt");
for(int i=0;i<str.length(); i++)
{
ofs<<char(str[i]+2);
}
return 0;
}
複製代碼
作者:
林劭澧
時間:
2024-9-4 20:25
#include<bits/stdc++.h>
using namespace std;
ifstream ifs;
ofstream ofs;
string str;
int main()
{
ifs.open("read.txt");
getline(ifs, str);
ofs.open("write.txt");
for( int i=0;len=str.length();i<len;i++)
{
char c=str[i]+2;
ofs<<c;
}
return 0;
}
複製代碼
作者:
李彣
時間:
2024-9-4 20:25
#include<bits/stdc++.h>
using namespace std;
ifstream ifs;
ofstream ofs;
string str;
int main()
{
ifs.open("read.txt");
getline(ifs, str);
ifs.open("write.txt");
for(int i=0;i<str.length();i++)
{
char c=str[i]+2;
ofs<<c;
}
return 0;
}
複製代碼
作者:
侯宣仲
時間:
2024-9-4 20:25
#include<bits/stdc++.h>
using namespace std;
ifstream ifs;
ofstream ofs;
string str;
int main()
{
ifs.open("read.txt");
getline(ifs,str);
ofs.open("write.txt");
for(int i=0;i<str.length();i++)
{
char c=str[i]+2;
ofs<<c;
}
return 0;
}
複製代碼
作者:
林劭杰
時間:
2024-9-4 20:26
#include<bits/stdc++.h>
using namespace std;
ifstream ifs;
ofstream ofs;
string str;
int main()
{
ifs.open("read.txt");
getline(ifs, str);
ofs.open("write.txt");
for(int i=0, len=str.length(); i<len; i++)
{
char c=str[i]+2;
ofs<<c;
}
return 0;
}
複製代碼
作者:
侯宣任
時間:
2024-9-4 20:27
#include<bits/stdc++.h>
using namespace std;
int main()
{
ifstream ifs;
ofstream ofs;
string str;
ifs.open("read.txt");
ofs.open("write.txt");
getline(ifs,str);
for(int i=0;i<str.length();i++){
ofs<<char(str[i]+2);
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2