题解 | #字符逆序#

字符逆序

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

#include <algorithm>

using namespace std;

int main() {
    string str;
    while(getline(cin,str)){
        
        for(auto it = str.rbegin();it!=str.rend();it++){
            cout<<(*it);
        }
        cout<<endl;
    }
}
全部评论

相关推荐

点赞 评论 收藏
转发
点赞 收藏 评论
分享
牛客网
牛客企业服务