美文网首页
2019-08-21 A1019 General Palindr

2019-08-21 A1019 General Palindr

作者: JO炮 | 来源:发表于2019-08-21 15:31 被阅读0次

这道题思路是非常简单的,但是一些细节很容易忽视,比如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");

相关文章

网友评论

      本文标题:2019-08-21 A1019 General Palindr

      本文链接:https://www.haomeiwen.com/subject/zuwxjctx.html