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

Tests(0/0):


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; b=0; while(a!=0){ x*=10; x+=a%10; a/=10;} if(i==x) cout<<x<<endl; } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:13:9: error: 'b' was not declared in this scope
         b=0;
         ^