Question: 1 0 1 2 2 8 2 5 : Introduction to Computer Science home > 9 . 1 0 : LAB: Parsing dates zyBooks cata

10122825: Introduction to Computer Science home >9.10: LAB: Parsing dates
zyBooks cata
9.10 LAB: Parsing dates
LAB
ACTIVITY
9.10.1: LAB: Parsing dates
2/10
Complete main() to read dates from input, one date per line. Each date's format must be as follows: March 1,1990. Any date not following that format is incorrect and should be ignored. Use the substr) function to parse the string and extract the date. The input ends with -1 on a line alone. Output each correct date as: 3-1-1990.
Ex: If the input is:then the output is:
3-1-1990
12-13-2003
Use the provided GetMonthAsint() function to convert a month string to an integer. If the month string is valid, an integer in the range 1 to 12 inclusive is returned, otherwise 0 is returned. Ex: GetMonthAsInt ("February") returns 2 and
GetMonthAsInt("7/15/20") returns 0.
History
main.cpp
C++
1 0 1 2 2 8 2 5 : Introduction to Computer

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!