Question: In C++ Write a program with the following elements: - a user-defined class, Student - with the following private data members: - Name (string) -
In C++

Write a program with the following elements: - a user-defined class, Student - with the following private data members: - Name (string) - Grade (int) - a global function that prompts for student information and stores it in the array of Student objects - a global function that displays the information stored in a Student object using the following format on a single line on the screen - Name (left-justified,25), Grade (right-justified,5) In main() - define an array of 3 Student objects - call the global function to populate the 3 objects in the array with data entered by the user - call the global function to display all the Student information Write a program with the following elements: - a user-defined class, Student - with the following private data members: - Name (string) - Grade (int) - a global function that prompts for student information and stores it in the array of Student objects - a global function that displays the information stored in a Student object using the following format on a single line on the screen - Name (left-justified,25), Grade (right-justified,5) In main() - define an array of 3 Student objects - call the global function to populate the 3 objects in the array with data entered by the user - call the global function to display all the Student information
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
