一只猪


私信TA

用户名:TuT99

访问量:11908

签 名:

拥有良好的积累,并且一直在路上,我相信自己有无限的可能

等  级
排  名 70
经  验 10268
参赛次数 6
文章发表 68
年  龄 21
在职情况 学生
学  校 哔哩哔哩大学
专  业 计算机科学与技术

  自我简介:


参考代码:

#include <iostream>

#include <string>

using namespace std;


bool isPalindrome(string str) {

    int left = 0;

    int right = str.length() - 1;


    while (left < right) {

        if (str[left] != str[right]) {

            return false;

        }

        left++;

        right--;

    }


    return true;

}


int main() {

    string str;

    cin >> str;


    if (isPalindrome(str)) {

        cout << "Y" << endl;

    } else {

        cout << "N" << endl;

    }


    return 0;

}


 

0.0分

1 人评分

  评论区

  • «
  • »