Posted on 2009-03-23 17:10
Hero 阅读(49)
评论(0) 编辑 收藏 引用 所属分类:
代码如诗--ACM
1 //1184 Accepted 15 196 387 C++
2
3 #include <iostream>
4 #include <string>
5 using namespace std ;
6
7 string str ;
8
9 bool Test( string& tstr )
10 {
11 int len = tstr.length() ;
12
13 for( int i=0; i<len; i++ )
14 {
15 if( tstr[i] != tstr[len-1-i] ) return false ;
16 }
17
18 return true ;
19 }
20
21 int main()
22 {
23 while( cin >> str )
24 {
25 if( Test( str ) )
26 printf( "Yes\n" ) ;
27 else
28 printf( "No\n" ) ;
29 }
30
31 return 0 ;
32 }