w3resource

C++ Exercises: Exchange the first and last characters in a given string and return the new string

C++ Basic Algorithm: Exercise-7 with Solution

Swap First and Last Characters

Write a C++ program to exchange the first and last characters in a given string and return the result string.

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;

// Function to modify a string based on certain conditions
string test(string str)
{
    // Check if the length of the string is greater than 1
    return str.length() > 1
        ? str.substr(str.length() - 1) + str.substr(1, str.length() - 2) + str.substr(0, 1) // Rearrange the string by moving the first character to the end
        : str; // Return the string as it is if its length is 1 or less
}

// Main function
int main() 
{
    cout << test("abcd") << endl;  // Output the result of test function with string "abcd"
    cout << test("a") << endl;     // Output the result of test function with string "a"
    cout << test("xy") << endl;    // Output the result of test function with string "xy"
    return 0;    // Return 0 to indicate successful execution of the program
}

Sample Output:

dbca
a
yx

Visual Presentation:

C++ Basic Algorithm Exercises: Exchange the first and last characters in a given string and return the new string.

Flowchart:

Flowchart: Exchange the first and last characters in a given string and return the new string

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C++ program to remove the character in a given position of a given string. The given position will be in the range 0..string length -1 inclusive.
Next: Write a C++ program to create a new string which is 4 copies of the 2 front characters of a given string. If the given string length is less than 2 return the original string.

What is the difficulty level of this exercise?



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://www.w3resource.com/cpp-exercises/basic-algorithm/cpp-basic-algorithm-exercise-7.php