题解 | #字符串反转#

字符串反转

http://www.nowcoder.com/practice/e45e078701ab4e4cb49393ae30f1bb04

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

int main() {
    string str; 
    getline(cin, str);

    transform(str.begin(), str.end(), str.begin(), ::tolower);
    reverse(str.begin(), str.end());
    
    cout << str << endl;
    return 0;
}
全部评论

相关推荐

Noob1024:一笔传三代,人走笔还在
点赞 评论 收藏
分享
废铁汽车人:秋招真是牛鬼蛇神齐聚一堂
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务