Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
2526 林子杰 回文数 C++ Wrong Answer 0 MS 264 KB 256 2024-01-07 11:16:45

Tests(0/10):


Code:

#include <iostream> using namespace std; int main(){ int x=0,y,a; cin>>a; y=a; while(a!=0){ x=x*10+a%10; a=a/10; } if(y==x) cout<<"Yes"<<endl; else cout<<"No"<<endl; return 0; }


Run Info:

------Input------
6973
------Answer-----
NO
------Your output-----
No