Question: Write a short Java application to find the largest and smallest number from a list of integers stored in a text file. NB the app
Write a short Java application to find the largest and smallest number from a list of integers stored in a text file. NB the app must be designed along modular design principles.
The user should be able to type java BigSmall
I have the following code already but need to elaborate on it:
// scan one word at a time import java.util.*; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; public class NextWord { public static void main(String[] args) { // open a text file for reading Scanner sc; try { sc = new Scanner(new File("tinytinyTale.txt")); while (sc.hasNext() ) { String s = sc.next(); System.out.println("[ " + s + " ]" ) ; } sc.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } } } Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
