vb中编写子过程对于已知正整数判断该数是否为回文数

急急急
2025-01-05 01:15:55
推荐回答(1个)
回答1:

#include 
#include 
#include 
using namespace std;
int main()
{
    while(1)
    {
        string pre_str;
        cin>>pre_str;
        string rev_str=pre_str;
        reverse(rev_str.begin(),rev_str.end());
        rev_str==pre_str?cout<<"是回文"<    }
    return 0;
}