search numbers program..................... import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; import java.util.Scanner; public class SearchNumbers { public static void main(String[] args) { try { // Initialize min and max int min = Integer.MAX_VALUE; int max = Integer.MIN_VALUE; // Construct a string with the name of the input file. You // can use this to construct an appropriate Reader object. String filename = "numbers.txt"; // -------------------------------- // ----- ENTER YOUR CODE HERE ----- // -------------------------------- // -------------------------------- // --------- END CODE -------- // -------------------------------- // Print the results System.out.println("Minimum value: " + min); System.out.println("Maximum value: " + max); } catch(Exception ioe) { ioe.printStackTrace(); } } } ....numbers.txt (program/file) -2 0 100 5 7 101