Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1857 孙浚轩 回文数 C++ Accepted 0 MS 256 KB 256 2023-11-25 17:35:09

Tests(10/10):


Code:

#include<iostream> using namespace std; int main() { long long a,b=0,t; cin>>a; t=a; while(a!=0) { b=b*10+a%10; a/=10; } if(t==b) cout<<"YES"; else cout<<"NO"; return 0; }