Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

please use substr() function and do not use any other libraries than string, iostream and fstream Write a C++ program to find and correct the

please use substr() function and do not use any other libraries than string, iostream and fstream

image text in transcribed

Write a C++ program to find and correct the errors in an input file. As you can see below, the input file, input.txt consists of the names, surnames, and birthdates of the players. In the input file, if the months entered are incorrect, you have to check this situation by using Exception Handling, and you should 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 "Aprl" is entered, its first 3 characters match "April", so correct it. (Hint: You can use the substr() function to check the first 3 characters) 1/3 In the main function, Create an output file named output.txt for all the correct or corrected inputs. Your program should input each line from the input file input.txt, and using Exception Handling, check the month. Create try-catch block for the month. You have to control the month's writing and then if it is not correct you should print the incorrectly entered month on the screen. In short, if exceptions are thrown, for the 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. In your catch block, you should create an object from the Player class. Use composition to create two classes Date and Player. A sample output of the catch routines will be as follows: Incorrectly inputted month: Sepsember is corrected to September Incorrectly inputted month:Febury is corrected to February Incorrectly inputted month:Decmber is corrected to December Incorrectly inputted month:Octber is corrected to October Incorrectly inputted month:Aprl is corrected to April a The grading of the homework will be based on: 1. You have to upload your homework on time on Moorle. 2. Your file should be in the format that yourname_ssurname_hw3.cpp 3. Please do not upload ,exe file, otherwise you will get zero. 4. Homework submitted via e-mail will be ignored. Use member initialization for the classes' constructors assignments. 5. This is not group work, sa if anyone cheats ar has a high similarity percentage (above 9036), will get zero. printinfol) function, has to print the first name, last name, birthdate day, month, and year of the 6. If your code does not compile, your program will be evaluated over 80 pts. player. 7. Late submissions will not be graded

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

Advances In Databases And Information Systems 25th European Conference Adbis 2021 Tartu Estonia August 24 26 2021 Proceedings Lncs 12843

Authors: Ladjel Bellatreche ,Marlon Dumas ,Panagiotis Karras ,Raimundas Matulevicius

1st Edition

3030824713, 978-3030824716

More Books

Students also viewed these Databases questions

Question

Is conflict always unhealthy? Why or why not? (Objective 4)

Answered: 1 week ago