Advertisement
wingman007

Java - fibonachi, arrays

Nov 24th, 2013
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.85 KB | None | 0 0
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package javaapplication17;
  6.  
  7. /**
  8.  *
  9.  * @author fmi
  10.  */
  11. public class JavaApplication17 {
  12.  
  13.     /**
  14.      * @param args the command line arguments
  15.      */
  16.     public static void main(String[] args) {
  17.         // TODO code application logic here
  18.        
  19.         int m[];
  20.         int []m1;
  21.         int[] m2;
  22.         int[] m3 = new int[5];
  23.         int[] m4 = new int[] {1,2,3,4,5};
  24.         int[] m5 = {1,2,3,4,5};
  25.         int[][] m6 = {
  26.             {1,2,3,4,5},
  27.             {4,5,6,7,8}
  28.         };
  29.        
  30.         // System.out.println(fibonachi(8));
  31.         fibonachi(8);
  32.     }
  33.    
  34.     public static int fibonachi(int n){
  35.         if(n <= 2) return 1;
  36.         // System.out.println(n);
  37.         return fibonachi(n-2) + fibonachi(n-1);
  38.     }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement