Board logo

標題: 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

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string a;
  8.     getline(cin,a);
  9.     cout<<a;
  10.    
  11.    
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

作者: 劉冠毅    時間: 5 天前 14:59

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     char  a[50];
  8.     cin.getline(a,50);
  9.     cout<<a;
  10.    
  11.    
  12.     system("pause");
  13.     return 0;   
  14. }
複製代碼

作者: 劉冠毅    時間: 5 天前 15:16

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. #include<algorithm>
  5. using namespace std;
  6. int main()
  7. {
  8.     string a;
  9.     cin>>a;
  10.     transform(a.begin(),a.end(),a.begin(),::toupper);
  11.     cout<<a;
  12.     transform(a.begin(),a.end(),a.begin(),::tolower);
  13.     cout<<endl;
  14.     cout<<a;
  15.    
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2