美文网首页
回文数 2018-07-12

回文数 2018-07-12

作者: 嘿咚 | 来源:发表于2018-07-12 11:04 被阅读0次
题目

<pre>

bool isPalindrome(int x) {

stringstream stringstream_x;

    stringstream_x<< x;

    string string_x = stringstream_x.str();

    string string1(string_x);

    reverse(string_x.begin(),string_x.end());

    if (string1.compare(string_x) ==0){

return true;

    }else{

return false;

    }

//    int x_reverse;

//    stringstream stream(string_x);

//    stream>> x_reverse;

}

</pre>

相关文章

网友评论

      本文标题:回文数 2018-07-12

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