address-book-management-system/src2/MainMdfMenu.cpp

41 lines
810 B
C++

// MainMdfMenu.cpp: implementation of the MainMdfMenu class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "MainMdfMenu.h"
MainMdfMenu::doMainStrategy()
{
int num = contact_item.size();
int index = 0;
system("cls");
cout<<endl;
cout<<"=====Modify Contact====================\n\n";
if (num > 1){
printAll();
cout<<"\n\tEnter the INDEX(1 - "<<num<<") of the information you want to MODIFY:(0 for quit) ";
cin.clear();
cin.sync();
cin>>index;
if ( (index<0) || (index>num) ){
cout<<"\n\t\tError Input!\n";
cin.clear();
cin.sync();
getch();
index = 0;
}
}
else if ( num == 1)
index = 1;
if (index == 0)
return 0;
index--;
modify_prsn(*contact_item.at(index));
cin.clear();
cin.sync();
getch();
return 0;
}