- 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();
- }
創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司,專注成都網(wǎng)站制作、成都做網(wǎng)站、網(wǎng)站營銷推廣,域名注冊,網(wǎng)頁空間,網(wǎng)站改版維護(hù)有關(guān)企業(yè)網(wǎng)站制作方案、改版、費(fèi)用等問題,請聯(lián)系創(chuàng)新互聯(lián)。