当前位置: 首页>>代码示例>>C++>>正文


C++ Phone_Directory::remove_entry方法代码示例

本文整理汇总了C++中Phone_Directory::remove_entry方法的典型用法代码示例。如果您正苦于以下问题:C++ Phone_Directory::remove_entry方法的具体用法?C++ Phone_Directory::remove_entry怎么用?C++ Phone_Directory::remove_entry使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Phone_Directory的用法示例。


在下文中一共展示了Phone_Directory::remove_entry方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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);
	the_directory.remove_entry(name);
	cout << name << " has been removed from the directory" << endl;
	// Complete the rest of this function 
	//Trevor Case did this
}
开发者ID:tcase94,项目名称:HW02,代码行数:10,代码来源:PD_Application.cpp

示例2: 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;
}
开发者ID:nammon16,项目名称:HW02,代码行数:13,代码来源:PD_Application.cpp

示例3: 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";
	}
}
开发者ID:bbream16,项目名称:HW02,代码行数:14,代码来源:PD_Application.cpp

示例4: 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

}
开发者ID:StevenAnderson,项目名称:HW02,代码行数:15,代码来源:PD_Application.cpp

示例5: 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 
	
}
开发者ID:bryanxiong,项目名称:HW02,代码行数:15,代码来源:PD_Application.cpp

示例6: 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;
	}
	
}
开发者ID:SandraTully,项目名称:HW02,代码行数:20,代码来源:PD_Application.cpp


注:本文中的Phone_Directory::remove_entry方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。