"palindrome c++" Code Answer's

You're definitely familiar with the best coding language C++ that developers use to develop their projects and they get all their queries like "palindrome c++" answered properly. Developers are finding an appropriate answer about palindrome c++ related to the C++ coding language. By visiting this online portal developers get answers concerning C++ codes question like palindrome c++. Enter your desired code related query in the search bar and get every piece of information about C++ code related question on palindrome c++. 

palindrome cpp string

By Relieved RhinocerosRelieved Rhinoceros on Jun 10, 2021
string input;

cout << "Please enter a string: ";
cin >> input;

if (input == string(input.rbegin(), input.rend())) {
    cout << input << " is a palindrome";
}

Source: stackoverflow.com

Add Comment

0

palindrome c++

By Mero my HeroMero my Hero on Jan 02, 2021
#include<iostream>
#include<string>
#include<algorithm>
bool IsPalindrome_true_false(const std::string& );
int main ()
{
    
    std::cout<<"Please enter a string:\t";
    std::string str;
    getline(std::cin, str);
    
    // convert the string from uppercase to lowercase 
    int i = 0;
    while(str[i])
    {
        if(str[i] == std::toupper(str[i]) && std::isalpha(str[i]) == 1024)
        str[i]+= 32;
        ++i;
    }
    // looping while string is empty 
    while(str.empty())
    {
        std::cout<<"\nPlease enter a string your string is empty:\t";
        if(!str.empty())
        std::string str;
        getline(std::cin, str);
    }
    
    std::cout<<"\n"<<std::boolalpha<<IsPalindrome_true_false(str)<<std::endl;
    std::cout<<std::endl;

    return 0;
}

// check if string is a palindrome and return true or false 
bool IsPalindrome_true_false(const std::string& str)
{

    int i = 0;                
    int j = str.length() - 1; 

    while(i <= j )
    {   
        
        if(std::isalpha(str[i]) == 0){
            ++i;
            continue;
        }else if(std::isalpha(str[j]) == 0){
            --j;
            continue;
        }   
        if(str[i] != str[j]){
        
           return false;
        }
        ++i;
        --j;
    }  
    return true;
}



Add Comment

0

All those coders who are working on the C++ based application and are stuck on palindrome c++ can get a collection of related answers to their query. Programmers need to enter their query on palindrome c++ related to C++ code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about palindrome c++ for the programmers working on C++ code while coding their module. Coders are also allowed to rectify already present answers of palindrome c++ while working on the C++ language code. Developers can add up suggestions if they deem fit any other answer relating to "palindrome c++". Visit this developer's friendly online web community, CodeProZone, and get your queries like palindrome c++ resolved professionally and stay updated to the latest C++ updates. 

C++ answers related to "palindrome c++"

View All C++ queries

C++ queries related to "palindrome c++"

Browse Other Code Languages

CodeProZone