For C# Write a console application that will accept string from a user (write get string as a stand-alone method). The program will display the original string. Rotate the letters of the string one character at a time printing after each rotation. A minimum of 10 lines should be output stop the program after the 10 lines have been displayed and the sting printed matches the original. Example program output (user input is in bold) Enter a string to be played with: abcd you entered abcd bcda cdab dabc abcd bcda cdab dabc abcd bcda cdab dabc abcd All done!
I'm lost as to how I go about creating code for this. Some hints I got was converting the string into an array and then converting it back. However, I'm not sure how to do any of this. Any help would be appreciated!
Join our real-time social learning platform and learn together with your friends!