算法笔记练习 6.9 algorithm 问题 C: 数组逆置

算法笔记练习 题解合集

本题链接

题目

题目描述
输入一个字符串,长度小于等于200,然后将数组逆置输出。

输入
测试数据有多组,每组输入一个字符串。

输出
对于每组输入,请输出逆置后的结果。

样例输入

tianqin

样例输出

niqnait

提示
注意输入的字符串可能会有空格。

思路

练习reverse

代码

#include 
#include 
using namespace std;
int main() {
	string input;
	while (getline(cin, input)) {
		reverse(input.begin(), input.end()); 
		cout << input << endl;
	}
	return 0;
} 

你可能感兴趣的:(算法笔记,算法,c++,c语言)