C++如何判断输入的字符串是否是回文
直接上程序#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++