We are providing online training of realtime Live project on Asp.Net MVC with Angular and Web API. For more information click here. If you have any query then drop the messase in CONTACT FORM

Sunday, June 20, 2021

How to convert Alphabet to next one alphabet like input "ab" and output will be "bc"

 class Program
    {
        static void Main(string[] args)
        {

            Console.WriteLine(LetterChanges(Console.ReadLine()));

            Console.ReadLine();
        }

        public static string LetterChanges(string str)
        {
            string newString = "";

            char[] chr = str.ToCharArray();
            for (int i = 0; i < chr.Length; i++)
            {
                var chr1 = chr[i];
                bool result = chr1.ToString().All(x => char.IsLetter(x));
                if(result)
                {
                    char chr2 = (char)((int)chr1 + 1);

                    newString += chr2;
                }
                else
                {
                    char chr2 = (char)((int)chr1);

                    newString += chr2;
                }
             
            }
           return newString;

        }
    }

Output



No comments: