Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
104658 郝王骏程 输出回文数 C++ Accepted 34 MS 272 KB 531 2025-01-06 20:07:36

Tests(10/10):


Code:

#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 n,a=1,c=0,x=0; cin>>n; for(int i=1;i<=n;i++){ a=i; c=a; x=0; while(a!=0){ x*=10; x+=a%10; a/=10;} if(i==x) cout<<x<<endl; } return 0; }