Computers and Technology

#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

answer
Answers: 1

Other questions on the subject: Computers and Technology

image
Computers and Technology, 22.06.2019 10:50, christinavelez26
Using least squares fitting, you are to fit the data sets to the following models and solve for the parameters ai , where i is the index of the parameter. the input/output data for the systems are linked in the bblearn site. for each of the systems use matlab to plot the supplied data vs. the model fit on one plot. include your code in the solutions. (a) linear fit "lineardata. mat" y=a1x^3 + a2x^2 + a3x + a4 (b) plant fit "plantdata. mat g(s) = a1/(s + a2)
Answers: 1
image
Computers and Technology, 23.06.2019 05:20, reeeeeee32
What did creator markus “notch" persson initially call his game
Answers: 1
image
Computers and Technology, 23.06.2019 10:00, austintules2005
Whats three fourths of 15(this is supposed to be in math but i clicked too fast)
Answers: 1
image
Computers and Technology, 24.06.2019 00:30, bsonicx
The best definition of an idiom is a. a word or phrase that describes a noun b. a word or phrase describing a verb c. a phrase containing figurative language in which the word expresses a different idea from its exact meaning d. a phrase that compares two unlike objects or ideas
Answers: 2
Do you know the correct answer?
#include #include #include using namespace std; int main() { int numOfStudents = 0; // The number of...

Questions in other subjects:

Konu
English, 01.10.2019 12:30