Problem

Consider the following incomplete Java program: a. Write Java statements that i...

Consider the following incomplete Java program:

a. Write Java statements that import the classes Scanner, FileReader, and PrintWriter from the packages java.util and java.io.

b. Write statements that declare inFile to be a reference variable of type Scanner and outFile to be a reference variable of type PrintWriter.

c. The program will read data from the file inData.txt and write output to the file outData.dat.Write statements to open both these files, associate inFile with inData.txt, and associate outFile with outData.dat.

d. Suppose that the file inData.txt contains the following data:

10.20 5.35

15.6

Randy Gill 31

18500 3.5

A

The numbers in the first line represent the length and width, respectively, of a rectangle. The number in the second line represents the radius of a circle. The third line contains the first name, last name, and the age of a person. The first number in the fourth line is the savings account balance at the beginning of the month and the second number is the interest rate per year. (Assume that π = 3.1416.) The fifth line contains an uppercase letter between A and Y (inclusive). Write statements so that after the program executes, the contents of the file outData.txt are as shown below. If necessary, declare additional variables. Your statements should be general enough so that if the content of the input file changes and the program is run again (without editing and recompiling), it outputs the appropriate results.

Rectangle:

Length = 10.20, width = 5.35, area = 54.57, parameter = 31.10

Circle:

Radius = 15.60, area = 764.54, circumference = 98.02

Name: Randy Gill, age: 31

Beginning balance = $18500.00, interest rate = 3.50

Balance at the end of the month = $18553.96

The character that comes after A in the ASCII set is B

e. Write the statement that closes the output file.

f. Write a Java application program that tests the Java statements that you wrote in parts a–e.

Step-by-Step Solution

Request Professional Solution

Request Solution!

We need at least 10 more requests to produce the solution.

0 / 10 have requested this problem solution

The more requests, the faster the answer.

Request! (Login Required)


All students who have requested the solution will be notified once they are available.
Add your Solution
Textbook Solutions and Answers Search
Solutions For Problems in Chapter 3