字符串反转

1、题目描述

写出一个程序,接受一个字符串,然后输出该字符串反转后的字符串。例如:

输入描述:

输入N个字符

输出描述:

输出该字符串反转后的字符串

输入例子:

abcd

输出例子:

dcba

2、程序

方案一

基本思路:循环输入,然后逆序循环输出。

#include <iostream>
#include <stdio.h>
#include <string>

using namespace std;

int main(){
    string str;
    getline(cin,str);
    //或者while(getline(cin,str))
    for(int i=str.length()-1;i>=0;i--){
    //或者for(i=str.length();i>0;i--)  
        cout<<str[i];
    }
    return 0;
}

方案二

基本思路:调用reverse()方法直接逆序输出。

#include <iostream>
#include <string>
#include <algorithm>
 
using namespace std;
 
int main()
{
    string input;
    while (getline(cin,input))
    {
        reverse(input.begin(), input.end());
        cout << input << endl;
    }
 
    return 0;
}
注意:一定要记得添加命名空间using namespace std,否则会报错,如果不添加那么每个函数之前应该加上std:
#include <iostream>
#include <string>
#include <algorithm>
 
//using namespace std;
 
int main()
{
    std::string input;
    while (getline(std::cin,input))
    {
        reverse(input.begin(), input.end());
        std::cout << input << std::endl;
    }
 
    return 0;
}
 
 

转载于:https://www.cnblogs.com/yedushusheng/p/5519055.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值