subject

#include #include #include using namespace std; int main() { int numOfStudents = 0; // The number of test scores string *namesPtr = nullptr; // To point to the names // Get the number of students. cout << "\nHow many students will you enter? "; cin >> numOfStudents; // Validate the input. while (numOfStudents < 0) { cout << "The number cannot be negative.\n"; cout << "Enter another number: "; cin >> numOfStudents; } // Allocate an array to hold the names. namesPtr = new string[numOfStudents]; // Populate the arrays. for (int i = 0; i < numOfStudents; i++) { // Get a name. cout << "\nEnter student" << (i + 1) << "'s name: "; cin >> namesPtr[i]; } // Display the resulting data. cout << "\nThe list students " << "\n\n"; cout << setw(12) << left << "Name" << setw(6) << endl; cout << "" << endl; cout << setprecision(2) << fixed << showpoint; for (int j = 0; j < numOfStudents; j++) { cout << endl; cout << setw(12) << left << namesPtr[j]; } cout << endl; // Free the dynamically-allocated memory. delete [] namesPtr; namesPtr = nullptr; return 0; }The requirements of this final code is similar to this one. But this time you are asked to use a structure (you can name it Student) to store the student's name and gpa; instead of the parallel arrays

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 23:00
Give an example of a case where a two-way handshake to establish a connection could leave one side of the connection live while the other side does not believe there is a connection.
Answers: 1
question
Computers and Technology, 22.06.2019 19:30
Avariable definition defines the name of a variable that will be used in a program, as well as
Answers: 3
question
Computers and Technology, 22.06.2019 21:30
This graph compares the total cost of attending educational institutions in texas. the graph demonstrates that the cost at private and public technical schools greatly varies.
Answers: 2
question
Computers and Technology, 23.06.2019 08:30
All of these are true about using adhesive except: a. dissimilar materials can be joined. b. mixing tips are product and material specific. c. a specific application gun may be required. d. two-part adhesives are dispensed using two mixing tips
Answers: 3
You know the right answer?
#include #include #include using namespace std; int main() { int numOfStudents = 0; // The number of...
Questions
Questions on the website: 13722363