码迷,mamicode.com
首页 > 其他好文 > 详细

自考新教材-p301_5(2)

时间:2020-02-05 13:31:11      阅读:53      评论:0      收藏:0      [点我收藏+]

标签: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;
}

运行结果:

技术图片

 

自考新教材-p301_5(2)

标签:nbsp   std   pac   源程序   stream   etl   begin   ret   http   

原文地址:https://www.cnblogs.com/duanqibo/p/12263237.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!