標題:
2024/11/30 冠毅
[打印本頁]
作者:
郭竑志
時間:
5 天前 13:53
標題:
2024/11/30 冠毅
本帖最後由 郭竑志 於 2024-11-30 14:02 編輯
[作業檢查]
打字練習網
中打練習:舉一反三、後生可畏、原來如此、體驗魯凱生活
函式的建立與執行 (四)
硬幣投擲模擬
[課程重點]
進位制
ASCII 編碼系統
Unicode 編碼系統
substr() 函式
replace() 函式
字串處理 (一)
字串處理 (二) - 字串輸入 1
字串處理 (三) - 字串輸入 2
字串處理 (五) - 英文大小寫轉換
字串處理 (六) - 取得字串長度 1
字串處理 (七) - 取得字串長度 2
字串處理 (八) - 將字串轉換為ASCII碼
[今日作業]
字串處理 (四) - 字串中第n個字母為何
字串處理 (九) - 將ASCII碼轉換為字串
字串處理 (十) - 判斷大小寫
作者:
劉冠毅
時間:
5 天前 14:54
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string a;
getline(cin,a);
cout<<a;
system("pause");
return 0;
}
複製代碼
作者:
劉冠毅
時間:
5 天前 14:59
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char a[50];
cin.getline(a,50);
cout<<a;
system("pause");
return 0;
}
複製代碼
作者:
劉冠毅
時間:
5 天前 15:16
#include<iostream>
#include<cstdlib>
#include<string>
#include<algorithm>
using namespace std;
int main()
{
string a;
cin>>a;
transform(a.begin(),a.end(),a.begin(),::toupper);
cout<<a;
transform(a.begin(),a.end(),a.begin(),::tolower);
cout<<endl;
cout<<a;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2