void do_remove_entry(Phone_Directory& the_directory) // Exercise 1.8: please complete the function do_remove_entry - Ed/Kent { string name; cout << "Enter name: "; getline(cin, name); string number = the_directory.lookup_entry(name); if (number != ""){ // If the name is found in the directory the_directory.remove_entry(name);// Call the remove_entry function to remove the name cout << name << " has been removed from the directory\n"; // Tell the user the entry has been deleted } else cout << name << " is not in the directory\n";// If the number is not found, tell the user // Complete the rest of this function }
void do_remove_entry(Phone_Directory& the_directory) // Exercise 1.8: please complete the function do_remove_entry - Ed/Kent { string name; cout << "Enter name: "; getline(cin, name); the_directory.remove_entry(name); cout << name << " has been removed from the directory" << endl; // Complete the rest of this function //Trevor Case did this }
void do_remove_entry(Phone_Directory& the_directory) // Madeline did this exercise. { string name; cout << "Enter name: "; getline(cin, name); string number = the_directory.lookup_entry(name); if (number != ""){ number = ""; name = ""; } }
//William Tadlock void do_remove_entry(Phone_Directory& the_directory) // Exercise 1.8: please complete the function do_remove_entry - Ed/Kent { string name; cout << "Enter name: "; getline(cin, name); // Complete the rest of this function string removed = the_directory.remove_entry(name);//tries to remove name from directory and stores the returned string if (removed != "") cout << "Number was successfully removed" << endl; else cout << "Number was not successfully removed" << endl; }
void do_lookup_entry(Phone_Directory& the_directory) { string name; cout << "Enter name: "; getline(cin, name); string number = the_directory.lookup_entry(name); if (number != "") { cout << "The number for " << name << " is " << number << "\n"; } else { cout << name << " is not in the directory\n"; } }
void do_remove_entry(Phone_Directory& the_directory) // Exercise 1.8: please complete the function do_remove_entry - Ed/Kent { //Eli string name; cout << "Enter name: "; getline(cin, name); string result = the_directory.remove_entry(name); if (result == "") { cout << name << " has been removed from the directory\n"; } else { cout << name << "is not in the directory\n"; } }
void do_remove_entry(Phone_Directory& the_directory) // Exercise 1.8: please complete the function do_remove_entry - Ed/Kent { //Zach Kinney & Steven Anderson string name; cout << "Enter name: "; getline(cin, name); string answer = the_directory.remove_entry(name); if (answer != "") std::cout << "Entry removed." << endl; else std::cout << "Name does not exist." << endl; // Complete the rest of this function }
void do_add_change_entry(Phone_Directory& the_directory) { string name; string number; cout << "Enter name: "; getline(cin, name); cout << "Enter number: "; getline(cin, number); string old_number = the_directory.add_or_change_entry(name, number); if (old_number != "") { cout << name << " has been changed in the directory\n"; cout << "Old number was " << old_number << "\n"; } else { cout << name << " has been added to the directory\n"; } }
void do_remove_entry(Phone_Directory& the_directory) // Exercise 1.8: please complete the function do_remove_entry - Ed/Kent { //Tyler Reardon: exercise 1.8 string name; cout << "Enter name: "; getline(cin, name); // Complete the rest of this function string success = the_directory.remove_entry(name); //sandra Tully if (success == "") { cout << "Person not in directory" << endl; } else { cout << "The number " << success << "has been removed from the directory" << endl; } }
void do_save(Phone_Directory& the_directory) { the_directory.save(); }