Sunday, February 8, 2015

how to reverse the sentence witout changing tha words position




ex: hi this is string
rev: ih siht si gnirts






    static void Main(string[] args)
        {
            string str = Console.ReadLine();
            string strrev = "";

            foreach (var word in str.Split(' '))
            {
                string temp = "";
                foreach (var ch in word.ToCharArray())
                {
                    temp = ch + temp;
                }
                strrev = strrev + temp + " ";
            }
            Console.WriteLine(strrev);
            Console.ReadLine();
        }

No comments:

Post a Comment