| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134608 | 何旻慧 | 回文数 | C++ | Accepted | 1 MS | 272 KB | 442 | 2025-10-29 19:09:56 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int m,n,sum=0; cin>>m; n=m; while(m!=0){ sum=sum*10+m%10; m=m/10;} if(n==sum){ cout<<"YES"; } else{ cout<<"NO"; } return 0; }