本文整理汇总了C++中Phone_Directory类的典型用法代码示例。如果您正苦于以下问题:C++ Phone_Directory类的具体用法?C++ Phone_Directory怎么用?C++ Phone_Directory使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Phone_Directory类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: do_remove_entry
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
}
示例2: do_remove_entry
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
}
示例3: do_remove_entry
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 = "";
}
}
示例4: do_remove_entry
//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;
}
示例5: do_lookup_entry
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";
}
}
示例6: do_remove_entry
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";
}
}
示例7: do_remove_entry
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
}
示例8: do_add_change_entry
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";
}
}
示例9: do_remove_entry
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;
}
}
示例10: do_save
void do_save(Phone_Directory& the_directory)
{
the_directory.save();
}