/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package binarysearch;
//import java.util.Scanner;
import javax.swing.JOptionPane;
/**
*
* @author mashtree
*/
public class BinarySearch {
static int[] f = {23, 32, 34, 37, 42, 45, 67, 74, 78, 86, 89, 90, 92, 94, 96, 97, 101, 103, 199};
//public int v = 32;
static void cari(int v) {
int atas = (f.length + 1);
...