2019-08-21 A1019 General Palindr
2019-08-21 本文已影响0人
JO炮
这道题思路是非常简单的,但是一些细节很容易忽视,比如Notice that there must be no extra space at the end of output.
这个要求,直接
printf("%d ",v[i] );
是不可以的,必须分开来实现
printf("%d", v[j]);
if(j != 0) printf(" ");
还有就是一定要注意到题目中说的0也是回文数
if(index == 0)
printf("0");