Skip to main content

Posts

Showing posts from November 15, 2020

Coding Challenge : C# Console Application, Given a string S, shift each character to its immediate right character (note: preserve the cases)

Coding Challenge : C# Console Application, Given a string S, shift each character to its immediate right character (note: preserve the cases)   This program is a modification from this program     //   Given a string S, shift each character to its immediate right character (note: preserve the cases)     //   Sample input : HeLlo     //   Sample output : IfMmp     class Program     {         static void Main( string [] args)         {             string result = string .Empty;             Console .WriteLine( "Enter the string" );             string givenString = Console .ReadLine();             if (givenString.Trim() == string .Empty)             {                 Console .WriteLine( "Enter Correct string, Exiting application..." );             }              else             {                 char [] charArray = givenString.ToCharArray();                   foreach ( char singleChar in charArray)                 {