標題:
2024/02/03 上課重點(家鉌)
[打印本頁]
作者:
劉得恩
時間:
2024-2-2 13:45
標題:
2024/02/03 上課重點(家鉌)
遠距教學連結
會議連結 - 1
會議連結 - 2
今日上課重點:
706 整數檔案讀寫
707 動態記憶體配置
708 12小時制時間
今日作業:
C++證照 606 - 610
送出KitaJudge並
AC
今日考試內容:
704 過半數
407 字串與檔案處理 (字元刪除及另存新檔)
作者:
林家鉌
時間:
2024-2-3 15:49
#include<bits/stdc++.h>
using namespace std;
int main()
{
ifstream op;
ofstream ed;
op.open("read.txt");
ed.open("write.txt");
string a;
getline(op,a);
for(int i=0;i<a.size();i++)
{
if(a[i]!='*')
ed<<a[i];
}
op.close();
ed.close();
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2