This program will create a database of students, containing the first and last name, and grade of each. age, How many students do you wish to enter? Student 1: First name: Jane Last name: Doe Age: 20 Grade: 94.3 Student 2: First name: John Last name: Doe Age: 21 Grade: 89.3 The data has been output to "students.txt". Resulting "students.txt": Jane Doe 20 94.30000 John Doe 21 89.30000

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter14: Files And Streams
Section: Chapter Questions
Problem 2CP: In Chapter 11, you created the most recent version of the MarshallsRevenue program, which prompts...
icon
Related questions
Question
To be done in C++
 
Brief Description:
This program will ask the user to enter details about a class of students, one student at a time. These details include first name, last name, age, and grade. The user should be able to add up to 10 students,
which will be stored in an array of structs.
 
Details:
The program should first ask the user how many students they wish to enter, up to 10. If a user enters a number less than 1 or greater than 10, the program should keep asking the user the number of students until the number is between 1 and 10. Once this information is known, the program should proceed to ask for each student’s first name, last name, age, and grade. Once all the student information has been entered by the user, the program should output all the student information to a file called “students.txt”. For each student entered, this file should contain 4 lines of
information. The first line should be the first name. The second line should be the last name. The third line should be the age. The fourth line should be the grade. So, for example, if my class contains a student named Jane Doe, age 20, with a grade of 94.3, this would appear in the “students.txt” file as:
Jane
Doe
20
94.3
and a similar entry would be present in the file for all the other students.
 
 
Specific Implementation Requirements:
1. An array of structs should be used to store the students in memory. The structs should each contain two character arrays (for the first and last name), one integer (for the age), and one float or double (for the grade).
2. The code which writes the data to the output file should not be in main.
3. A comment block should be present before each function, explaining what the function does.
4. Comments should be present within each function, explaining any possibly confusing code.
5. The program should properly compile and run without crashing.
6. The program should properly store names, ages, and grades without any loss of data (e.g., if I enter a grade of 9.4, but your program only stores 9, you’ve lost data)
 
Add a feature to your program which reads in an existing “students.txt” and allows the user to add additional students to it. The program should, before asking the user to input the number of students, ask the user if they wish to load an existing file. If the user says yes, your program should read in the existing file, and then ask the user how many additional students they wish to add (but in any case the user should not be allowed to have
more than 10 students, including existing and new). If the user declines to load the existing “students.txt” file, your program should proceed as normal.
 
The run should look like this and the output should be this:
This program will create a database of students, containing the first and last name,
and grade of each.
age,
How many students do you wish to enter?
Student 1:
First name: Jane
Last name: Doe
Age: 20
Grade: 94.3
Student 2:
First name: John
Last name: Doe
Age: 21
Grade: 89.3
The data has been output to "students.txt".
Resulting "students.txt":
Jane
Doe
20
94.30000
John
Doe
21
89.30000
Transcribed Image Text:This program will create a database of students, containing the first and last name, and grade of each. age, How many students do you wish to enter? Student 1: First name: Jane Last name: Doe Age: 20 Grade: 94.3 Student 2: First name: John Last name: Doe Age: 21 Grade: 89.3 The data has been output to "students.txt". Resulting "students.txt": Jane Doe 20 94.30000 John Doe 21 89.30000
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 5 steps with 3 images

Blurred answer
Knowledge Booster
Concept of pointer parameter
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
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,