c_cpp reverse_string.cpp

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp reverse_string.cpp相关的知识,希望对你有一定的参考价值。

#include <iostream>
using namespace std;

string reverse(string cadena) {
	string alveres;
	for (int i = cadena.length() -1; i >= 0; i--){
		cout << "f " << i << endl;
		alveres += cadena.at(i);
	}
	return alveres;
}

main() {
	cout << "Esta es el string normal: " << endl;
	string s = "String de prueba";
	cout << s << endl;
	cout << "El string al reves: " << endl;
	cout << reverse(s) << endl; // Aqui se llama a la funcion
}

以上是关于c_cpp reverse_string.cpp的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 200.岛屿数量

c_cpp 127.单词阶梯

c_cpp MOFSET

c_cpp MOFSET

c_cpp 31.下一个排列

c_cpp string→char *