Archive for Mei 2013

Dice, C# , Code


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace dadu
{
    class Program
    {
        static void Main(string[] args)
        {
            F();
            F();
            F();
            F();
            F();
            F();
        }

        static Random rnd = new Random();
        static void F()
        {

            for (int i = 0; i < 600; i++)
            {
                double value;
                double n = 0.5 + rnd.NextDouble() * (6.0 - 0.5);
                value = Math.Round(n);
                Console.WriteLine(value);
            }

            Console.ReadLine();
        }
    }
}

Sabtu, 25 Mei 2013
Posted by Admin

Permutation


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Permutation
{
    class Program
    {
        private void swap(ref char a, ref char b)
        {
               if (a == b) return;

            a ^= b;

            b ^= a;

            a ^= b;

        }

        public void setper(char[] list)
        {

            int x = list.Length - 1;

            go(list, 0, x);

        }

        private void go(char[] list, int k, int m)
        {

            int i;

            if (k == m)
            {

                Console.Write(list);

                Console.WriteLine(" ");

            }

            else

                for (i = k; i <= m; i++)
                {

                    swap(ref list[k], ref list[i]);

                    go(list, k + 1, m);

                    swap(ref list[k], ref list[i]);

                }
            Console.ReadLine();
        }

    }

    class Class1
    {

        static void Main()
        {

            Permutation p = new Permutation();

            string c = "123456";

            char[] c2 = c.ToCharArray();



            p.setper(c2);

        }

    }
        }

Posted by Admin

Translate

Popular Post

My Friends

Blog Archive

Diberdayakan oleh Blogger.

Total Tayangan Halaman

- Copyright © Tech Blog -Metrominimalist- Powered by Blogger - Designed by Johanes Djogan -