Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ Write a program that will read several abbreviations given as std::string values until the value of END is given. After reading each abbreviation, the

C++
image text in transcribed
Write a program that will read several abbreviations given as std::string values until the value of "END" is given. After reading each abbreviation, the program will check if the same abbreviation already exists in a data base. If not, it will add this new abbreviation to the correct row of the data base. The abbreviation data base will be composed of a 2D std::string array, with 3 rows and 20 columns. Abbreviations starting with digits will be kept in the first row, abbreviations starting with an upper case letter between 'A' and 'M' will be kept in the second row, and abbreviations starting with an upper case letter between 'N' and 'Z' will be kept in the third row. After checking over all the input, the program will write the data base to the screen as seen in the examples below. NOTE: For each row there can be no more than 20 abbreviations. You do NOT need to check this in the input. NOTE: YOU MUST use a 2D std::string array to keep all the database in this question. HINT: For checking if a given string exists in the data base, it would be a good idea to write a method like (doesExistinDB). Using such a method will reduce a lot of code repetition. HINT: You can check the first char of a string as if the string is a 10 char array (e.g., std::string s; s[0]). Input SQL COL 007 KAR ENG KITT ZAL bio bio MX 977 END 011 CBR END KAR 1 END Output 0-9:1 0 - 9:007 011 0-9: 977 M: KAR ENG A - M: COL CBR A-M: MX KITT N-Z: SQL N-Z: N-Z: ZAL

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

Step: 3

blur-text-image

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

Practical Issues In Database Management A Refernce For The Thinking Practitioner

Authors: Fabian Pascal

1st Edition

0201485559, 978-0201485554

More Books

Students also viewed these Databases questions

Question

What may be some physical causes of erectile dysfunctions?

Answered: 1 week ago