c++字符数组-判断字符串是否为回文

时间限制:1 s内存限制:128 MB

输入一个字符串,输出该字符串是否回文。回文是指顺读和倒读都一样的字符串。

输入

输入为一行字符串(字符串中没有空白字符,字符串长度不超过 100100)。

输出

如果字符串是回文,输出 yes;否则,输出 no

样例
输入 1
abcdedcba
输出 1

yes

#include 
using namespace std;
const int n=100;
int main()
{   
    char s[n];
    int i=0,j;
    gets(s);
    j=strlen(s)-1;
    while(i<=j&&s[i]==s[j]){
        i++;j--;
    }
    if(i<=j){cout<<"no";}
    else{cout<<"yes";}
    return 0;
}
 
输入
abcdedcba
输出
yes

ok 

 
 

你可能感兴趣的:(c++,算法,c++,数据结构)