中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c++怎么判斷回文字符串

c++
小億
123
2024-03-05 15:11:55
欄目: 編程語言

以下是一個C++程序來判斷一個字符串是否為回文字符串:

#include <iostream>
#include <string>
#include <algorithm>

bool isPalindrome(std::string str) {
    std::string reversedStr = str;
    std::reverse(reversedStr.begin(), reversedStr.end());
    
    return str == reversedStr;
}

int main() {
    std::string str;
    std::cout << "Enter a string: ";
    std::cin >> str;
    
    if (isPalindrome(str)) {
        std::cout << str << " is a palindrome." << std::endl;
    } else {
        std::cout << str << " is not a palindrome." << std::endl;
    }
    
    return 0;
}

該程序首先定義了一個函數isPalindrome,它接受一個字符串作為參數,并返回一個布爾值來表示該字符串是否為回文字符串。在main函數中,用戶輸入一個字符串,然后調用isPalindrome函數來判斷是否為回文字符串,并輸出相應的結果。

運行程序后,輸入一個字符串,程序會輸出該字符串是否為回文字符串。

0
广昌县| 东源县| 类乌齐县| 包头市| 江北区| 双城市| 乐山市| 望城县| 赤壁市| 沭阳县| 绥中县| 灵璧县| 甘孜县| 正宁县| 滨海县| 集安市| 建昌县| 九江县| 马边| 恩平市| 古浪县| 白沙| 大埔区| 虎林市| 同心县| 巴青县| 张家界市| 聂拉木县| 吐鲁番市| 灵寿县| 芒康县| 石林| 宜黄县| 铁岭县| 台中县| 大竹县| 太仓市| 简阳市| 桦川县| 南乐县| 黄大仙区|