標題:
2025/3/29冠毅
[打印本頁]
作者:
郭竑志
時間:
5 天前 13:40
標題:
2025/3/29冠毅
本帖最後由 郭竑志 於 2025-3-29 14:46 編輯
[課堂重點]
501 字串轉換
502 數字相乘
503 區間運算
504 迴文數
作者:
劉冠毅
時間:
5 天前 13:55
#include<bits/stdc++.h>
using namespace std;
int main()
{
string a;
cin>>a;
cout<<stoi(a);
return 0;
}
複製代碼
作者:
劉冠毅
時間:
5 天前 14:30
#include<bits/stdc++.h>
using namespace std;
int main()
{
stringstream ss;
int k=0;
int y=1;
int o=0;
string a;
cin>>a;
for(int i=0;i<a.length();i++){
if(i==a.length()-1){
cout<<a[i];
}
else{
cout<<a[i];
cout<<"*";
}
k = a[i] - '0';
y=k*y;
}
cout<<"="<<y;
return 0;
}
複製代碼
作者:
劉冠毅
時間:
5 天前 14:52
#include<bits/stdc++.h>
using namespace std;
int main()
{
int b;
int a;
cin>>a>>b;
a=sqrt(a);
for(int i=1;i<a;i++){
cout<<pow(i,b)<<endl;
}
return 0;
}
複製代碼
作者:
劉冠毅
時間:
5 天前 15:07
#include<bits/stdc++.h>
using namespace std;
int main()
{
int o,l;
int b;
string a;
cin>>a;
for(int i=0;i<a.length();i++){
l=i;
}
for(int u=a.length()-1;u>=0;u--){
o=u;
}
if(a[l]==a[o]){
cout<<"yes";
}else{
cout<<"no";
}
return 0;
}
複製代碼
作者:
劉冠毅
時間:
5 天前 15:37
#include<bits/stdc++.h>
using namespace std;
int main()
{
int o;
int b;
string a;
cin>>a;
o=a.length();
string flag="yes";
for(int i=0;i<a.length();i++){
o=o-1;
if(a[i]!=a[o])
{
flag="no";
}
}
cout<<flag;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2