السلام ..
انا عضوة جديدة معاكم بالمنتدى وعندي اسايمنت في مادة السي بلس بلس وما اعرف اسويه يبونه في لكلاس ..
ياريت اللي يعرف للبرنامج يساعدني وجزاكم الله الف خير مقدما..
هذا السؤال :
Develop an array-based list C++ data type for a list of integers having all nessary operation such as isertion , deletion and travesal.
the output should be as follows:
Testing a list of integer values
Enter one of the following:
1to insert at begining of list
2to insert at end of list
3to delete from begining of list
4to delete from end of list
5to display all list items
6to update all list items by calculating the square value
7to end list processing
1 ؟
Enter integar : 1
The list is :1
1 ؟
Enter integar : 2
The list is : 2 1
2 ؟
Enter integar : 3
The list is :2 1 3
2 ؟
2Enter integar : 4
The list is :2 1 3 4
3 ؟
2removed from list
The list is : 1 3 4
3 ؟
2 1removed from list
The list is : 3 4
4 ؟
2 4removed from list
The list is : 3
4 ؟
2 3removed from list
The list is empty
7 ؟
End list test
تحياتي
broken7eart