第一种方法: string[] str = { "3", "a", "8", "haha" };
for (int i = str.Length - 1; i >= 0; i--)
{
Console.WriteLine(str);
}
Console.ReadKey();
第二种方法:
string[] str = { "3", "a", "8", "haha" };
string temp;
for (int i = 0; i < str.Length/2; i++)
{
//交换str个元素,与第str[length-1-i]个元素
temp = str;
str = str[str.Length - 1 - i];
str[str.Length - 1 - i] = temp;
}
for (int i = 0; i < str.Length; i++)
{
Console.WriteLine(str);
}
Console.ReadKey();
|
|
|
|