import java.util.Scanner; public class inputarray { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[][][]arr={ { {1,2,3}, {4,5,6} }, { {7,8,9}, {10,11,12} }, }; System.out.println("Enter number to Search:"); int searchvalue= sc.nextInt(); boolean found = false; for(int i=0; i