MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / main

Method main

Programs/Fibonacci.java:53–64  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

51 }
52
53 public static void main(String[] args)
54 {
55 int arr[] = { 10, 22, 35, 40, 45, 50,
56 80, 82, 85, 90, 100,235};
57 int n = 12;
58 int x = 235;
59 int ind = fibMonaccianSearch(arr, x, n);
60 if(ind>=0)
61 System.out.print("Found at index: "+ ind);
62 else
63 System.out.print(x+" isn't present in the array");
64 }
65}

Callers

nothing calls this directly

Calls 2

fibMonaccianSearchMethod · 0.95
printMethod · 0.80

Tested by

no test coverage detected