Package BigInteger.homework2

Source Code of BigInteger.homework2.Homework2

package BigInteger.homework2;

import BigInteger.homework2.MatrixFibonnaci;

import java.math.BigInteger;

/**
* Created with IntelliJ IDEA.
* User: mtjikuzu
* Date: 1/31/13
* Time: 10:30 AM
* To change this template use File | Settings | File Templates.
*/
public class Homework2 {

        public static void main(String[] args)
        {
            MatrixFibonnaci matrixFibonnaci = new MatrixFibonnaci();
            LinearFibonnaci linearFibonnaci = new LinearFibonnaci();
           // System.out.println(linearFibonnaci.Fibonacci(20));
//            for (int i = 1000000; i <= 5000000; i += 500000)
//            {
//                matrixFibonnaci.Fibonacci(i);
//            }
//
//
//            for (int i = 1000000; i <= 5000000; i += 500000)
//            {
//               linearFibonnaci.Fibonacci(i);
//            }



        }
}
TOP

Related Classes of BigInteger.homework2.Homework2

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.