swap用法

#C#

Posted by Phyxsius on 2023-09-14


internal class Program
{
    private static void Main(string[] args)
    {
        int[] ary = { 1, 2};

        Console.WriteLine("原始陣列內容:");
        showArray(ary);

        swap(ary, 0, 1);

        Console.WriteLine("交換後陣列內容:");
        showArray(ary);
    }

    //兩個值互相交換
    static void swap(int[] ary, int value1, int value2)
    {
        int tmp = ary[value2];
        ary[value2] = ary[value1];
        ary[value1] = tmp;
    }

    //顯示陣列內容
    static void showArray(int[] ary)
    {
        for (int i=0; i<ary.Length; i++)
        {
            Console.Write(ary[i] + ",");
        }
        Console.WriteLine();
    }
}

#C#







Related Posts

該來理解 JavaScript 的原型鍊了

該來理解 JavaScript 的原型鍊了

Day2 android UI實作+activity介紹!!

Day2 android UI實作+activity介紹!!

form相關元素-Browser Default Styles-更改

form相關元素-Browser Default Styles-更改


Comments