(String[] args)
| 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 | } |
nothing calls this directly
no test coverage detected