標題:
2024/01/26 上課重點(家鉌)
[打印本頁]
作者:
陳育霖
時間:
2024-1-25 15:42
標題:
2024/01/26 上課重點(家鉌)
本帖最後由 陳育霖 於 2024-1-26 13:31 編輯
遠距教學連結
會議連結 - 1
會議連結 - 2
今日上課重點:
602 字串拆解
603 多重迴圈
604 選擇排序
605 差值計算
606 檢驗學號
607 撲克牌比大小
今日作業:
C++證照 401-405
送出KitaJudge並
AC
今日考試:
410 字串與檔案處理 (字首轉大寫)
508 二進位運算
作者:
林家鉌
時間:
2024-1-26 13:42
#include<bits/stdc++.h>
using namespace std;
int main()
{
ifstream in;
ofstream ou;
in.open("read.txt");
ou.open("write.txt");
string b;
int a;
cin>>a;
for(int i=0;i<a;i++)
{
getline(in,b);
for(int j=0;j<b.size();j++)
{
if(j==0)
b[j]=b[j]-'a'+'A';
else if(b[j-1]==' ')
b[j]=b[j]-'a'+'A';
}
ou<<b<<endl;
}
in.close();
ou.close();
return 0;
}
複製代碼
作者:
林家鉌
時間:
2024-1-26 14:02
#include<bits/stdc++.h>
using namespace std;
int main()
{
string a,b;
int c;
cin>>a;
for(int i=0;i<a.size();i++)
{
if(a[i]<='Z')
{
cout<<a[i];
c++;
}
else
b+=a[i];
}
cout<<endl<<b<<endl<<c<<endl;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2