倒置字符串

通过键盘输入任意一个字符串序列,除空格、制表符和换行符外,可能包含其他任意字符。请编写一个程序,自动实现倒置字符串中的各个字符的位置。如果输入“abc”,结果将是“cba”


//解法一:STL解法
#include <iostream>
#include <string>
#include <iterator>
using namespace std;

int main()
{
	string str;
	cin >> str;
	for (string::reverse_iterator it=str.rbegin(); it!=str.rend(); it++)
	{
		cout << *it;
	}
	cout << endl;
	return 0;
}

//解法二

#include <iostream>
using namespace std;

int main()
{
	char ch[100],c;
	char temp;
	int i=0,size;
	cout << "input string (enter to end):" <<endl;
	while (1)
	{
		scanf("%c",&c);
		if (c=='\n')
		{
			break;
		}
		ch[i]=c;
		i++;
	}
	ch[i]='\0';		//字符数组中最后一位位'\0'
	size = strlen(ch)-1;
	i=0;
	while (i<=size)
	{
		temp=ch[i];
		ch[i]=ch[size];
		ch[size]=temp;
		i++;
		size--;
	}
	cout << ch << endl;
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值