Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The program should be written in Pascal language , NOT C++ or other languages Program 3: President records Input file presidents. txt contains records in

The program should be written in Pascal language, NOT C++ or other languages

image text in transcribed

Program 3: President records Input file presidents. txt contains records in the form of text lines, one per U.S. president. Each president record contains: - The starting year of the president's term (4 digits) - The ending year of the president's term (4 digits) - The president's first name - The president's middle initials with periods (not all presidents have middle initials) - The president's last name One or more blanks separate the years and the first and last names and middle initials. There are no blanks inside the first and last names. If a president has more than one initial, they are written together with periods but no blanks. You must assume that the presidents not sorted. Your program should not know in advance how many president records there are. The last president record is followed by a sentinel record that has 1 in place of the starting year. Read and store each president's years, first name, middle initials (if any), and last name in a Pascal record. Store all the records in an array of records that's large enough to hold 20 records. Following the dummy record, there is a list of search years terminated by -1. For each search year, find the president who was in office during that year (there may be more than one president). Input file presidents.txt 2 Output Read the input file and store the presidents' data into the array of records, sort the array into ascending order by starting year, and print the presidents in sorted order. Then for each search year, search the array for the matching presidents and print the search year and the matching presidents' names. If there is no match, print "no match". Text input hints - If ch is a character variable, then read (ch) will read the next character from the standard input. - If n is an integer variable, then read(n) will read the next integer value from the standard input. - A call to readln will skip the rest of the current input line. Then the next call to read will read starting on the next input line. - Boolean functions eoln and eof without parameters test whether the standard input is at the end of the current line or at the end of file, respectively. (If you're typing input data into a Windows command window, a line containing only control- Z is the end-of-file marker. On Linux and the Mac, it's control-D.)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions

Question

1. Let a, b R, a Answered: 1 week ago

Answered: 1 week ago