Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
32373 王籽易 回文数判断 C++ 通过 100 0 MS 252 KB 194 2022-02-10 16:50:01

Tests(5/5):


#include<bits/stdc++.h> using namespace std; int m,t; int n; int main(){ cin>>m; n=m; while(m){ t=t*10+m%10; m/=10; } if(t==n) cout<<"Yes"; else cout<<"No"; return 0; }


测评信息: