標題:
407 字串與檔案處理 (字元刪除及另存新檔)
[打印本頁]
作者:
鄭繼威
時間:
2024-3-8 21:03
標題:
407 字串與檔案處理 (字元刪除及另存新檔)
1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。
2. 設計說明:
請撰寫一程式,讀取read.txt檔案內容,
將檔案中的「*」符號全部刪除
,並寫入至write.txt檔案。
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。
3. 輸入輸出:
輸入說明
讀取read.txt檔案內容
輸出說明
寫入至write.txt檔案
範例輸入
範例輸出
附件:
read.txt
本帖隱藏的內容需要回復才可以瀏覽
作者:
張絜晰
時間:
2024-3-15 20:16
本帖最後由 張絜晰 於 2024-3-15 20:17 編輯
#include<bits/stdc++.h>
using namespace std;
int main()
{
ifstream ifs;
ifs.open("read.txt");
ofstream ofs;
ofs.open("write.txt");
string str;
getline(ifs,str);
for(int a=0;a<str.length();a++){
if(str[a]!='*'){
ofs<<str[a];
}
}
return 0;
}
複製代碼
作者:
得銓
時間:
2024-3-15 20:19
#include<bits/stdc++.h>
using namespace std;
int main()
{
ifstream ifs;
ifs.open("read.txt");
ofstream ofs;
ofs.open("write.txt");
string str;
getline(ifs,str);
for(int i=0;i<str.length();i++)
{
if(str[i]!='*')
{
ofs<<str[i];
}
}
return 0;
}
複製代碼
作者:
呂宗晉
時間:
2024-3-15 20:19
#include<bits/stdc++.h>
using namespace std;
int main()
{
ifstream ifs;
ifs.open("read.txt");
ofstream ofs;
ofs.open("write.txt");
string str;
getline(ifs,str);
for(int i=0;i<str.length();i++)
{
if(str[i]!='*')
{
ofs<<str[i];
}
}
return 0;
}
複製代碼
作者:
蔡沛倢
時間:
2024-3-15 20:32
#include<bits/stdc++.h>
using namespace std;
int main()
{
ifstream ifs;
ifs.open("read.txt");
ofstream ofs;
ofs.open("write.txt");
string str;
getline(ifs,str);
for(int i=0;i<str.length();i++)
{
if(str[i]!='*')
{
ofs<<str[i];
}
}
return 0;
}
複製代碼
作者:
何權晉
時間:
2024-3-22 20:23
#include<bits/stdc++.h>
using namespace std;
int main()
{
cin.tie(0);
cin.sync_with_stdio(0);
ifstream ifs;
ifs.open("read.txt");
ofstream ofs;
ofs.open("write.txt");
string str;
getline(ifs,str);
for(int i=0;i<str.length();i++)
{
if(str[i]!='*')
{
ofs<<str[i];
}
}
return 0;
}
複製代碼
作者:
邱品惟
時間:
2024-3-22 20:26
#include<bits/stdc++.h>
using namespace std;
int main()
{
ifstream ifs;
ifs.open("read.txt");
ofstream ofs;
ofs.open("write.txt");
string a;
getline(ifs,a);
for(int i=0;i<=a.length();i++)
if(a[i]!='*')
ofs<<a[i];
return 0;
}
複製代碼
作者:
邱品惟
時間:
2024-6-7 19:53
#include<bits/stdc++.h>
using namespace std;
int main()
{
ifstream ifs;
ifs.open("read.txt");
ofstream ofs;
ofs.open("write.txt");
string a;
getline(ifs,a);
for(int i=0;i<=a.length();i++)
if(a[i]!='*')
ofs<<a[i];
return 0;
}
複製代碼
作者:
郭又瑄
時間:
2024-6-26 20:14
#include<bits/stdc++.h>
using namespace std;
int main()
{
cin.tie(0);
cin.sync_with_stdio(0);
ifstream ifs;
ifs.open("read.txt");
ofstream ofs;
ofs.open("write.txt");
string str;
getline(ifs,str);
for(int i=0;i<str.length();i++)
{
if(str[i]!='*')
{
ofs<<str[i];
}
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2