欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C++ 回文字符串判断

程序员文章站 2022-03-09 19:49:26
...
#include <iostream>
#include <string>
using namespace std;
inline bool is_palindrome(const string str) {
    int length = str.length();
    for (int i = 0; i < length / 2; ++i)
        if (str[i] != str[length - i - 1])
            return false;
    return true;
};
int main(int argc, char *argv[]) {
    ios::sync_with_stdio(false);
    string str; cin >> str;
    if (is_palindrome(str)) cout << "YES";
    else cout << "NO"; cout.put('\n');
    return 0;
};

 

 

 

相关标签: 模板