Java Programing Joyce Farrell 13-8 Create an application named StudentsStanding.java that allows you to enter student data that consists of an ID number, first name, last name, and grade point average. Have the program accept input until ZZZ is entered for the ID number. Depending on whether the student’s grade point average is at least 2.0, output each record either to a file of students in good standing (StudentsGoodStanding.txt) or those on academic probation (StudentsAcademicProbation.txt). Create an application named StudentsStanding2.java that displays each record in the two files created in the StudentsStanding application. Display a heading to introduce the list produced from each file. For each record, display the ID number, first name, last name, grade point average, and the amount by which the grade point average exceeds or falls short of the 2.0 cutoff. For example, the output should be formatted as follows (note that the student info may vary):

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Java Programing Joyce Farrell 13-8

  1. Create an application named StudentsStanding.java that allows you to enter student data that consists of an ID number, first name, last name, and grade point average. Have the program accept input until ZZZ is entered for the ID number. Depending on whether the student’s grade point average is at least 2.0, output each record either to a file of students in good standing (StudentsGoodStanding.txt) or those on academic probation (StudentsAcademicProbation.txt).

  2. Create an application named StudentsStanding2.java that displays each record in the two files created in the StudentsStanding application. Display a heading to introduce the list produced from each file. For each record, display the ID number, first name, last name, grade point average, and the amount by which the grade point average exceeds or falls short of the 2.0 cutoff. For example, the output should be formatted as follows (note that the student info may vary):

Programming Exercise 13-8
Instructions
YE
3
ا... |
A
go
CENGAGE MINDTAP
{0}
1. Create an application named
StudentsStanding.java that
allows you to enter student
data that consists of an ID
number, first name, last name,
and grade point average. Have
the program accept input until
ZZZ is entered for the ID
number. Depending on
whether the student's grade
point average is at least 2.0,
output each record either to a
file of students in good
standing
(StudentsGoodStanding.txt) or
those on academic probation
(StudentsAcademicProbation.t
StudentsStanding.java StudentsStanding2.java +
1 import java.nio.file.*;
2 import java.io.*;
3 import static
java.nio.file. StandardOpenOption.*;
4 import java.util.Scanner;
5 import java.nio.channels.FileChannel;
6 public class Students Standing {
7
8
public static void main(String[] args) {
Path goodFile = Paths.get("/root/
sandbox/StudentsGoodStanding.txt");
Path probFile = Paths.get("/root/
sandbox/Students Academic Probation.txt");
// Write your code here
10
11
A WNTO
12
13}
14
}
Transcribed Image Text:Programming Exercise 13-8 Instructions YE 3 ا... | A go CENGAGE MINDTAP {0} 1. Create an application named StudentsStanding.java that allows you to enter student data that consists of an ID number, first name, last name, and grade point average. Have the program accept input until ZZZ is entered for the ID number. Depending on whether the student's grade point average is at least 2.0, output each record either to a file of students in good standing (StudentsGoodStanding.txt) or those on academic probation (StudentsAcademicProbation.t StudentsStanding.java StudentsStanding2.java + 1 import java.nio.file.*; 2 import java.io.*; 3 import static java.nio.file. StandardOpenOption.*; 4 import java.util.Scanner; 5 import java.nio.channels.FileChannel; 6 public class Students Standing { 7 8 public static void main(String[] args) { Path goodFile = Paths.get("/root/ sandbox/StudentsGoodStanding.txt"); Path probFile = Paths.get("/root/ sandbox/Students Academic Probation.txt"); // Write your code here 10 11 A WNTO 12 13} 14 }
Programming Exercise 13-8
Instructions
YE
ا... |
L
1. Create an application named
StudentsStanding.java that
allows you to enter student
data that consists of an ID
number, first name, last name,
and grade point average. Have
the program accept input until
ZZZ is entered for the ID
number. Depending on
whether the student's grade
point average is at least 2.0,
output each record either to a
file of students in good
standing
(StudentsGoodStanding.txt) or
those on academic probation
(StudentsAcademicProbation.t
StudentsStanding.java StudentsStanding2.java +
1 import java.nio.file.*;
2 import java.io.*;
3 import static
java.nio.file. StandardOpenOption.*;
4 public class Students Standing2 {
5 public static void main(String[] args) {
Path goodFile = Paths.get("/root/
sandbox/StudentsGoodStanding.txt");
6
Path probFile = Paths.get("/root/
sandbox/Students Academic Probation.txt");
7
8
9
10
11
12
13
14}
15
// Write your code here
}
public static void display (String s) {
// Write your code here
}
↓
Transcribed Image Text:Programming Exercise 13-8 Instructions YE ا... | L 1. Create an application named StudentsStanding.java that allows you to enter student data that consists of an ID number, first name, last name, and grade point average. Have the program accept input until ZZZ is entered for the ID number. Depending on whether the student's grade point average is at least 2.0, output each record either to a file of students in good standing (StudentsGoodStanding.txt) or those on academic probation (StudentsAcademicProbation.t StudentsStanding.java StudentsStanding2.java + 1 import java.nio.file.*; 2 import java.io.*; 3 import static java.nio.file. StandardOpenOption.*; 4 public class Students Standing2 { 5 public static void main(String[] args) { Path goodFile = Paths.get("/root/ sandbox/StudentsGoodStanding.txt"); 6 Path probFile = Paths.get("/root/ sandbox/Students Academic Probation.txt"); 7 8 9 10 11 12 13 14} 15 // Write your code here } public static void display (String s) { // Write your code here } ↓
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 9 steps with 8 images

Blurred answer
Knowledge Booster
File Input and Output Operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education