回文串判断,直接 equal 函数往上拍。
#include <bits/stdc++.h> using namespace std; int main(){ string s; getline(cin,s); if(equal(s.begin(),s.end(),s.rbegin())){ cout << "Y" << endl; } else{ cout << "N" << endl; } return 0; }
0.0分
0 人评分
A+B for Input-Output Practice (VI) (C语言代码)浏览:602 |
C二级辅导-求偶数和 (C语言代码)浏览:659 |
C语言训练-字符串正反连接 (C语言代码)浏览:727 |
点我有惊喜!你懂得!浏览:1705 |
点我有惊喜!你懂得!浏览:2754 |
C语言训练-邮票组合问题* (C语言代码)......浏览:689 |
C语言程序设计教程(第三版)课后习题12.2 (C语言代码)浏览:855 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:643 |
C语言训练-自由落体问题 (C语言代码)浏览:1775 |
【数组的距离】 (C语言代码)浏览:787 |