直接上程序
#include <iostream>
using namespace std;
void main( ) {
char str[180];//预先定义一个容量为180的数组
int i,l,t=1; //t=1为true
cout<<"输入一个字符串:";
cin>>str;
l=strlen(str);//获取输入的字符串长度
for(i=0;i<l/2;i++)
if (str[i] != str[l - i - 1]) {
t = 0;//一旦有不等情况,t为0;
break; }
if (t == 0)cout << str << "不是回文!" << endl;
else cout << str << "是回文!" << endl;
}