文章

20

粉丝

412

获赞

12

访问

163.3k

头像
巧用string简单做回文数
推荐阅读
P1659 中南大学/湖南大学机试题
发布于2021年4月17日 19:24
阅读数 7.0k

#include <iostream>
#include <algorithm>
using namespace std;

int main() {
    string s, rs;
    int index = 1;
    while(cin >> s) {
        rs = s;
        reverse(rs.begin(), rs.end());
        if(s == rs) cout << "case" << index++ << ": yes" << endl;
        else cout << "case" << index++ << ": no" << endl;
     }
    return 0;
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发