Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write an address book program that stores your contacts' names and their email addresses. The names and email addresses are originally stored in a file

Write an address book program that stores your contacts' names and their email addresses. The names and email addresses are originally stored in a file called phonebook.in, in the format: Harry P..d@hogwarts.edu Hermione G..h@hogwarts.edu Ron W..b@hogwarts.edu Draco M..s@hogwarts.edu Severus S..e@hogwarts.edu Albus D..x@hogwarts.edu Your program should read from the file, storing the names and corresponding email addresses in a dictionary as key-value pairs. Then, the program should display a menu that lets the user enter the numbers 1 through 5, each corresponding to a different menu item: 1) look up an email address 2) add a new name and email address 3) change an email address 4) delete a name and email address 5) save address book and exit When the user enters 1, the program should prompt them for a name, and then print the corresponding email address. If there is no dictionary entry under that name, the program should print, "Sorry, no contact exists under that name." When the user enters 2, the program should prompt them for a name and an email address, then add a new key-value pair to the dictionary. When the user enters 3, the program should prompt them for a name and a new email address for that contact. It should change the value of the corresponding dictionary entry to match the new email address. When the user enters 4, the program should prompt them for a name and delete the corresponding dictionary entry. When the user enters 5, the program should write the names and email addresses in alphabetical order by first name to the file phonebook.out. Sample Run Enter 1) look up an email address 2) add a new name and email address 3) change an email address 4) delete a name and email address 5) save address book and exit:1 Enter name:Hermione G..h@hogwarts.edu Enter 1) look up an email address 2) add a new name and email address 3) change an email address 4) delete a name and email address 5) save address book and exit:5

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Dental Assisting

Authors: Doni Bird, Debbie Robinson

13th Edition

978-0323624855, 0323624855

Students also viewed these Programming questions

Question

The marketing communications micro-environment the media context

Answered: 1 week ago