標題:
2025/2/22冠毅
[打印本頁]
作者:
郭竑志
時間:
2025-2-22 13:37
標題:
2025/2/22冠毅
[課堂重點]
310 函式與陣列 (阿姆斯壯數)
401 字串與檔案處理 (字串長度與連結)
402 字串與檔案處理 (字串比較)
403 字串與檔案處理 (字串大小寫轉換)
[今日作業]
404 字串與檔案處理 (字母出現次數)
作者:
劉冠毅
時間:
2025-2-22 15:24
#include<bits/stdc++.h>
using namespace std;
int f(int o)
{
int y=0;
int s[3];
for(int i=o;i>=0;i--){
int m=0;
int l=i;
int t=0;
while(l>0){
s[t]=l%10;
l=l/10;
t++;
}
if(i==153)
{
for(int h=0;h<t;h++){
m=m+pow(s[h],t);
}
if(i==m){
cout<<m<<endl;
y=y+m;
}
}
}
return y;
}
int main()
{
int u;
cin>>u;
cout<<f(u);
return 0;
}
複製代碼
作者:
劉冠毅
時間:
2025-3-15 14:26
#include<bits/stdc++.h>
using namespace std;
int main()
{
int o[26]={0};
string str;
cin>>str;
for(int i=0;i<=str.length();i++){
o[str[i]-'a']++;
}
int maxt=0;
char b;
for(int k=0;k<=25;k++){
if(o[k]>maxt){
maxt=o[k];
b=k;
}
}
cout<<maxt;
b=b+'a';
cout<<b;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2