Beispiel #1
0
        static void Main(string[] args)
        {
            Stopwatch stopwatch = new Stopwatch();

            Thread thread1 = new Thread(MyThread1);
            Thread thread2 = new Thread(MyThread2);
            Thread thread3 = new Thread(MyThread3);

            thread1.Priority = ThreadPriority.Highest;
            thread2.Priority = ThreadPriority.AboveNormal;
            thread3.Priority = ThreadPriority.Highest;

            stopwatch.Start();

            thread1.Start();
            thread2.Start();
            thread3.Start();

            //Console.WriteLine("/// Euqlid algorithm ///");
            long euqlidGCD = GCDComputer.EuqlidGCDRec(63, 77);

            Console.WriteLine("GCD4 = {0}", euqlidGCD);

            stopwatch.Stop();
            Console.WriteLine("Elapsed = {0}", stopwatch.Elapsed);
            Console.WriteLine("----------------------------------------------------------------");

            Console.ReadKey();
        }
Beispiel #2
0
        static void MyThread2()
        {
            //Console.WriteLine("/// Second algorithm ///");
            long secondGCD = GCDComputer.SecondGCD(32, 78);

            Console.WriteLine("GCD2 = {0}", secondGCD);
        }
Beispiel #3
0
        static void MyThread3()
        {
            //Console.WriteLine("/// Third algorithm ///");
            long thirdGCD = GCDComputer.ThirdGCD(25, 45);

            Console.WriteLine("GCD3 = {0}", thirdGCD);
        }
Beispiel #4
0
        static void MyThread1()
        {
            //Console.WriteLine("/// First algorithm ///");
            long firstGCD = GCDComputer.FirstGCD(65, 74);

            Console.WriteLine("GCD1 = {0}", firstGCD);
            //Console.WriteLine("///////////////////////////////////////////////////////////////////////");
        }