概述
c++判断一个字符串是否是回文字符串
#include<iostream>
#include<string>
using namespace std;
//Wassamassaw
bool isPalindrome(string s,int n) {
int i = 0, j = n - 1;
while (i <= j) {
if (s[i] == s[j] || s[i]-32 == s[j] || s[i] == s[j]-32) {
i++;
j--;
}else{
return false;
}
}
return true;
}
int main() {
string s;
int n;
bool flag;
while(cin>>s){
n = s.length();
flag = isPalindrome(s, n);
if (flag) {
cout << "Bingle! Palindrome." << endl;
}else{
cout << "Not Palindrome." << endl;
}
}
return 0;
}
最后
以上就是粗暴樱桃为你收集整理的c++判断一个字符串是否是回文字符串的全部内容,希望文章能够帮你解决c++判断一个字符串是否是回文字符串所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复