竞赛
考级
很久没发题解了,主要是我前几天在赶作业 这道题其实很简单 这道题我的核心思想就是string类型的str倒序装入ans中,然后两个string类型的变量进行比较 接下来为代码段 ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
末影珍珠
法兰西玫瑰
#include <bits/stdc++.h> using namespace std; bool is_pal(int x) { int sum=0,t=x; while(t) { sum=sum*10+t%10; t/=10; } if(sum==x) return true; else return false; } int main() { int n; cin>>n; if(is_pal(n)) cout<<"Yes"; else cout<<"No"; return 0; }
小李子
空降坐标:CP003106 请看代码
LiWei
yy
HXB
#include <bits/stdc++.h> using namespace std; bool f(int n){ int a=n,sum=0; while(a){ sum=a%10+sum*10; a/=10; } if (sum==n) return true; else return false; } int main() { int n; cin>>n; if(f(n)) cout<<"Yes"; else cout<<"No"; return 0; }
kali熊砸
acgoacgo
#include <bits/stdc++.h> using namespace std; bool is_pal(int x) { int sum=0,t=x; while(t) { sum = sum*10+t%10; t/=10; } if(sum==x) return true; else return false; } int main() { int n; cin>>n; if(is_pal(n)) cout<<"Yes"; else cout<<"No"; return 0; }
一个屑水作
#include <bits/stdc++.h> using namespace std; int main() { string str, ans = ""; cin >> str; for(int i = str.size() - 1; i >= 0; i--) ans += str[i]; if(ans == str) cout << "Yes" << endl; else cout << "No" << endl; return 0; }
复仇者_元神启动
准
#include<bits/stdc++.h> using namespace std; bool is_pal(int x){ string s = to_string(x); string rev_s = s; reverse(s.begin(),s.end()); return rev_s == s; } int main() { int n; cin >> n; if(is_pal(n)) cout << "Yes" << endl; else cout << "No" << endl; return 0; }
dfs却一场空
#include <bits/stdc++.h> using namespace std; int n; int main() { 定义 s; 输出>>s; 定义 证书=s.size(); 如果(定义 i=0;i<整数;++i) { if(s[i]!=s[len-i-1]){ 打印<<"不是"<<endl; return 0; } } 打印<<"Yes"<<endl; return 0; }
使一颗心免于悲伤
四大Tian王
高原上の万叶.com
JMZ詹总
陈炜涵
正在减肥的吃货
毛奕程
༺ཌༀ餐·戔ༀད༻
共23条