Answered step by step
Verified Expert Solution
Question
1 Approved Answer
java Given the java code provided by your instructor and the skeleton code below: import javax.swing.JOptionPane; public class Lab 3 _ 1 { public static
java Given the java code provided by your instructor and the skeleton code below:
import javax.swing.JOptionPane;
public class Lab
public static void mainString args
GUI gui new GUI;
String fName JOptionPane.showInputDialoggui
"Enter the name of the file";
Add remaining code here
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 fScnr to be a reference variable of type Scanner and fout 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 fin with inData.txt and associate fout with outData.dat.
d Suppose that the file inData.txt contains the following data:
Randy Gill
D
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 pi 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 width area parameter
Circle:
Radius area circumference
Name: Randy Gill, age:
Beginning balance $ interest rate
Balance at the end of the month $
The character that comes after D in the ASCII set is E
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 ae Add screenshot of output here
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started