Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a CH+ program to find and if possible correct the errors written in an input foe. The input file as shown below consists of

image text in transcribed
image text in transcribed
Write a CH+ program to find and if possible correct the errors written in an input foe. The input file as shown below consists of first and last names of people as well as their birthdates on each line: As you can see from the file, the day, month or year of the birthdate might be incorrectly entered. You are expected to discard the input if the day and year are incorrect, and try to correct the month. To correct the month, check the first 3 characters, if it matches one of the 12 months, correct it. For example, if "Sepsember" is entered, its first 3 characters match "September", 50 correct it accordingly. Output all the correcty entered or corrected inputs onto another file as shown below. Ali Yilmaz - August 3, 1999 . Ece Ozkan - September 15,2000 Output file Hakan Boz - October 23, 1998 Tolga Bal - April 22, 2002 Arda Tozan - January 12, 1998 in your program, implement the following classes using composition: Your main program should input each line from the input file, and using exception handling, check the day, month and year. If exceptions are thrown, in your first catch routine, output an error message if day or year is incorrect. In your second catch, try to correct the month according to the first 3 characters. If you can correct the month, output the corrected information onto the output file. A sample output of the catch routines will be as follows: Hints: 1. To check the first 3 characters of a string, you can use the substr () function in the string header file. st. substr(x,n) : returns n characters from the string st starting from position x. 2. To make your job easier, you may think about putting the 12 months into an array of strings

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

PC Magazine Guide To Client Server Databases

Authors: Joe Salemi

1st Edition

156276070X, 978-1562760700

More Books

Students also viewed these Databases questions

Question

=+21.6. Prove (21.9) by Fubini's theorem.

Answered: 1 week ago

Question

4. Explain the strengths and weaknesses of each approach.

Answered: 1 week ago