标签:code blog return pac bsp 模拟 str pre algo
输入一个字符串,输出该字符串是否回文。回文是指顺读和倒读都一样的字符串。
abcdedcba
yes
思路:
模拟;
来,上代码:
#include<cstdio> #include<string> #include<cstring> #include<iostream> #include<algorithm> using namespace std; int len; string word; bool check() { int l=0,r=len-1; while(r>l) { if(word[l]!=word[r]) return false; l++,r--; } return true; } int main() { cin>>word; len=word.length(); if(check()) printf("yes\n"); else printf("no\n"); return 0; }
AC日记——判断字符串是否为回文 openjudge 1.7 33
标签:code blog return pac bsp 模拟 str pre algo
原文地址:http://www.cnblogs.com/IUUUUUUUskyyy/p/6119622.html