标签:nbsp std pac 源程序 stream etl begin ret http
源程序:
#include <string>
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
string str = "";
getline(cin, str, ‘\n‘);
reverse(str.begin(), str.end());
cout << str << endl;
system("pause");
return 1;
}
运行结果:
标签:nbsp std pac 源程序 stream etl begin ret http
原文地址:https://www.cnblogs.com/duanqibo/p/12263237.html