Question: This is in C++, Could you please separate the 5 different files into different steps? It should have main.cpp, skater.cpp, skater.h, list.cpp, list.h Using Microsoft

This is in C++, Could you please separate the 5 different files into different steps? It should have main.cpp, skater.cpp, skater.h, list.cpp, list.h

This is in C++, Could you please separate the 5 different files

into different steps? It should have main.cpp, skater.cpp, skater.h, list.cpp, list.h Using

Using Microsoft Visual Studio, write a program that keeps track of country names and scores associated with an Olympics figure skating competition. The program should maintain a linked list of country/score pairs, sorted in descending score order. The user is shown a menu with options to add a node to the list, print the list, and exit the program. You should create two C++ classes. One should be named Skater, with a declaration that looks something like this: The other class should be named List, and should manage a linked list of Skaters. The constructor simply sets up an empty list. The destructor frees the dynamically-allocated memory. A declaration for List might look like this: class List \{ public: List (); void addNode (string country, float score); void printList (); List (); private: Skater *head; Submit a .zip file to Canvas that contains five files: main.cpp, skater.cpp, skater.h, list.cpp, and list.h. Example Output

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!