题解 | #字符逆序#

字符逆序

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

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

void reverseString(string str) {

    for(int i=0,j=str.length()-1;i<j;i++,j--)
    {
        swap(str[i],str[j]);
    }
    cout<<str<<endl;
}

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

    reverseString(str);

    return 0;
}

全部评论

相关推荐

苍蓝星上艾露:这简历。。。可以试试我写的开源简历优化工具https://github.com/weicanie/prisma-ai
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务