string a=Console.ReadLine(); //输入一串字符for (int i=a.Length-1 ;i>=0 ;i--) Console.Write (a[i]);
思路: 逆向遍历,逐个输出 for循环递减