c_cpp 回文

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 回文相关的知识,希望对你有一定的参考价值。

#include <iostream> 

using namespace std;

int main(){
  
  char word[50];
  cout << "Enter Word: \n";
  cin.getline(word, 50);
  int length = strlen(word);
  int i;
  
  for(i = 0; (i < length/2) && (word[i]==word[length - 1 -i]); i++);
  if(i == length/2)
  {
    cout << "Is Palindrome";    
  }
  else{
    cout << "Is Not Palindrome";
  }
}

以上是关于c_cpp 回文的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 9.回文数

c_cpp 最小的受限回文

c_cpp 回文

c_cpp 回文

c_cpp UVa 11404 - 回文序列

c_cpp 回文子序列 - GeeksforGeeks