自考新教材-p301_5

Posted duanqibo

tags:

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

源程序:

#include <string>
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
string str = "";
getline(cin, str, ‘ ‘);
reverse(str.begin(), str.end());
cout << str << endl;
system("pause");
return 1;
}

运行结果:

技术图片

 

以上是关于自考新教材-p301_5的主要内容,如果未能解决你的问题,请参考以下文章

自考新教材-p176_5

自考新教材-p90_5

自考新教材-p243_5_

自考新教材-p90_5

自考新教材-p90_5

自考新教材-p328_5