標題:
2023/08/22 課堂重點(郁媗)
[打印本頁]
作者:
陳育霖
時間:
2023-8-21 22:59
標題:
2023/08/22 課堂重點(郁媗)
本帖最後由 陳育霖 於 2023-8-22 21:00 編輯
今日課堂重點:
字串處理 (三) - 字串輸入 2
字串處理 (四) - 字串中第n個字母為何
ASCII 編碼系統
字串處理 (五) - 英文大小寫轉換
字串處理 (六) - 取得字串長度 1
字串處理 (七) - 取得字串長度 2
字串處理 (八) - 將字串轉換為ASCII碼
字串處理 (九) - 將ASCII碼轉換為字串
403 字串與檔案處理 (字串大小寫轉換)
字串處理 (十) - 判斷大小寫
stringstream 字串串流 (一)
stringstream 字串串流 (二)
作業:
字串分割 (一)
今日考試:
301 函式與陣列(小星星)
作者:
陳郁媗
時間:
2023-8-22 20:24
#include<iostream>
using namespace std;
int main()
{
string str;
cin>>str;
for(int i=0;i<str.length();i++)
if(str[i]>='a')
{
cout<<char(str[i]-'a'+'A');
}
else
cout<<char(str[i]-'A'+'a')<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2