Board logo

標題: 2025/2/22冠毅 [打印本頁]

作者: 郭竑志    時間: 2025-2-22 13:37     標題: 2025/2/22冠毅

[課堂重點]
310 函式與陣列 (阿姆斯壯數)
401 字串與檔案處理 (字串長度與連結)
402 字串與檔案處理 (字串比較)
403 字串與檔案處理 (字串大小寫轉換)
[今日作業]
404 字串與檔案處理 (字母出現次數)
作者: 劉冠毅    時間: 2025-2-22 15:24

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int f(int o)
  4. {
  5.     int y=0;
  6.     int s[3];
  7.     for(int i=o;i>=0;i--){
  8.         int m=0;
  9.         int l=i;
  10.         int t=0;
  11.         while(l>0){
  12.             s[t]=l%10;
  13.             l=l/10;
  14.             t++;

  15.         }
  16.         if(i==153)
  17.         {

  18.         for(int h=0;h<t;h++){
  19.             m=m+pow(s[h],t);

  20.             }
  21.             if(i==m){
  22.                 cout<<m<<endl;
  23.                 y=y+m;
  24.             }
  25.         }



  26.     }
  27.     return y;
  28. }

  29. int main()
  30. {
  31.     int u;
  32.     cin>>u;

  33.         cout<<f(u);


  34.     return 0;
  35. }
複製代碼

作者: 劉冠毅    時間: 2025-3-15 14:26

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     int o[26]={0};
  6.     string str;
  7.     cin>>str;

  8.     for(int i=0;i<=str.length();i++){

  9.         o[str[i]-'a']++;

  10.     }
  11.     int maxt=0;
  12.     char b;
  13.     for(int k=0;k<=25;k++){
  14.         if(o[k]>maxt){
  15.             maxt=o[k];
  16.             b=k;
  17.         }
  18.     }
  19.     cout<<maxt;
  20.     b=b+'a';
  21.     cout<<b;


  22.     return 0;
  23. }
複製代碼





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