Merge pull request #278 from Apostropheqq/master

Create reversestrin.cpp
This commit is contained in:
Luke Oliff 2018-10-08 09:45:35 -07:00 committed by GitHub
commit 5305e9876a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

21
code/Apostropheqq.cpp Normal file
View File

@ -0,0 +1,21 @@
#include <iostream>
using namespace std;
void reverse(const string& a);
int main()
{
string str;
cout << " Please enter a string " << endl;
getline(cin, str);
reverse(str);
return 0;
}
void reverse(const string& str)
{
size_t numOfChars = str.size();
if(numOfChars == 1)
cout << str << endl;
else
{
cout << str[numOfChars - 1];
reverse(str.substr(0, numOfChars - 1));
}