In "SHOW TITLE" section, I only can show title2
how can I show title1 also??
1 2 3 4 5 6 7
Enter the number of elements to be stored: 2
Enter one element: 3.4
Enter your title: test1
Enter one element: 5.6
Enter your title: test2
IN ASCENDING ORDER: 3.4 SHOW TITLE: test2
IN ASCENDING ORDER: 5.6 SHOW TITLE: test2
for(i=0;i<mynum;++i)
{
cout << "IN ASCENDING ORDER: ";
cout << store[i] << " ";
cout << "SHOW TITLE: ";
cout << title; // This prints the last thing the user has input for the title
cout << endl;
}
You can do something similar to what you did with your elements, which is storing it into an array that holds strings. Note: You should probably change the initialization of the array with a const variable.