(C#)将用户输入的字符串相反输出
- static void Main(string[] args)
- {
- //接收用户输入的字符串,将其中的字符以与输入相反的顺序输出。
- Console.WriteLine("Give me a string:");
- string mystring = Console.ReadLine();
- string myresult = "";
- for (int i = mystring.Length - 1; i >= 0; i--)
- {
- myresult += mystring[i];//或者myresult += mystring.Substring(i,1);
- }
- Console.WriteLine("The result is {0}:",myresult);
- Console.ReadKey();
- }
创新互联-成都网站建设公司,专注成都网站制作、成都做网站、网站营销推广,域名注册,网页空间,网站改版维护有关企业网站制作方案、改版、费用等问题,请联系创新互联。
网站栏目:(C#)将用户输入的字符串相反输出
分享地址:http://myzitong.com/article/jjsgdc.html