palin.cpp
来自「包括ARM开发环境的使用和一些调试用的源程序」· C++ 代码 · 共 31 行
CPP
31 行
#include <algorithm>
#include <cctype>
#include <iostream>
#include <string>
using std::cin; using std::cout;
using std::endl; using std::equal;
using std::string; using std::transform;
#ifndef _MSC_VER
using std::isspace;
#endif
bool is_palindrome(const string& s)
{
return equal(s.begin(), s.end(), s.rbegin());
}
int main()
{
string s;
while (cin >> s) {
if (is_palindrome(s))
cout << s << " is a palindrome" << endl;
else
cout << s << " is not a palindrome" << endl;
}
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?