7 条题解
- 1
信息
- ID
- 99
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 3
- 标签
- 递交数
- 73
- 已通过
- 37
- 上传者
#include<bits/stdc++.h>
using namespace std;
int main(){
string s1,s2;
cin>>s1;
s2=s1;
reverse(s2.begin(),s2.end());
if(s1==s2)
cout<<"TRUE";
else
cout<<"FALSE";
return 0;
}
#include<bits/stdc++.h> using namespace std; int main() { int a,b,c,d,e,k; cin>>a; b=a/1000; c=a/100%10; d=a/10%10; k=a%10; a=1000b+100c+10d+k; e=1000k+100d+10c+b; if(e==a) { cout<<"TRUE "<<endl; } else if(e!=a) { cout<<"FALSE "<<endl; } return 0; }
#include #include using namespace std; string s,t; int main() { getline(cin,s); s=s.substr(0,s.size()-1); t=s; reverse(t.begin(),t.end()); if(t==s) cout << "TRUE " << endl; else cout << "FALSE " << endl; return 0; }