Using String Arrays help me please

edited July 2011 in Science & Tech
create a program that will perform the ff output:

select transaction:

[A]-Add new record
-Search
[D]-Delete
[V]-view all record
[X]-Exit
fields:

I.D
First Name
Last Name

Gender: Male/Female

1. Adding of record:
input>>first, last, gender

2. Search
cin>>Enter ID

output: firstname, lastname, gender

cout<<no record found (if no record);

3. Delete
cin>> ID
if not found - no record found
if found - record deleted;

4. view..

view all records;

requirements:

will not terminate if user did not choose exit
OOP approach:eek3:

Comments

  • _k_k P-Town, Texas Icrontian
    edited July 2011
    Is it suppose to exit if the user chooses something besides exit?
  • pragtasticpragtastic Alexandria, VA Icrontian
    edited July 2011
    Looks like homework to me. Might be able to help if you had specific questions or some start to your project with source.. or anything....
  • TushonTushon I'm scared, Coach Alexandria, VA Icrontian
    edited July 2011
    You aren't even specifying what language, but you can probably start with this and insert whatever language is appropriate for MATLAB then post back.
Sign In or Register to comment.