參加活動

請輸入以下資訊註冊一組活動專用的帳號。

您輸入的密碼必須至少 6 個字元。

帳戶資訊

using System;

namespace RegisterCaptcha
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] arrInt32 = new int[] {24, 67, 68, 45, 10, 83, 83, 76, 86 };

            for (int x = 0; x < 9; x++)
            {
                for (int y = 0; y < 9 - 1; y++)
                {
                    if (arrInt32[y] > arrInt32[y + 1])
                    {
                        arrInt32[y] ^= arrInt32[y + 1];
                        arrInt32[y + 1] ^= arrInt32[y];
                        arrInt32[y] ^= arrInt32[y + 1];
                    }
                }
            }

            for (int i = 9; i > 0; i--)
            {
                Console.Write("{0}/", arrInt32[i - 1]);
            }
        }
    }
}