逆转字符串——输入一个字符串,将其逆转并输出。

#include
#include
#include
using namespace std;
int main(){
	stack temp;
	string a;
	int i = 0;
	cin >> a;
	while (a[i] != '\0') {
		temp.push(a[i]);
		i++;
	}
	while (!temp.empty()) {
		cout << temp.top();
			temp.pop();
	}
	cout << endl;
	system("pause");
	return 0;
}

 

你可能感兴趣的:(c++)