字符串打散,反转输出

string str = "abcd.,L"; char[] newstr=str.ToCharArray(); for (int i = newstr.Length-1; i >=0; i--) { Console.WriteLine(newstr[i]); }

你可能感兴趣的:(String)