Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions