Question: Using Codio C++ Can You Please Put A Label On The Start Of Each File So I Can Identify Which Is Which. (Main.Cpp) , (Data.H),

Using Codio C++ Can You Please Put A Label On The Start Of Each File So I Can Identify Which Is Which. (Main.Cpp) , (Data.H), And (Implementation.Cpp) _________________________________________ #Include

This problem has been solved!

See the answer

Using Codio C++

Can you please put a label on the start of each File so I can identify which is which. (Main.cpp) , (Data.h), and (Implementation.cpp)

_________________________________________

#include

#include "Data.h"

using namespace std;

using namespace ns;

int menu();

int main()

{

FloatList list;

float num;

int ch;

do

{

ch = menu();

//system("clear");

if (ch == 1)

{

cout > "

cout

cin >> num;

list.appendNode(num);

}

else if (ch == 2)

{

cout > "

cout

cin >> num;

list.insertNode(num);

}

else if (ch == 3)

{

cout > "

cout

cin >> num;

list.deleteNode(num);

}

else if (ch == 4)

{

cout > "

list.displayList();

system("sleep 3s");

}

else if (ch == 5)

{

cout

list.~FloatList();

exit(0);

}

else

{

cout

break;

}

cout

} while (ch >= 1 && ch =>

}

int menu()

{

int ch;

system("clear");

cout > "

cout

cout

cout

cout

cout

cout

cin >> ch;

return(ch);

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 Programming Questions!