Pendant Publishing edits multi-volume manuscripts for many authors. For each volume, they want a label that contains the author’s name, the title of the work, and a volume number in the form Volume 9 of 9. For example, a set of three volumes requires three labels: Volume 1 of 3, Volume 2 of 3, and Volume 3 of 3. Design an application that reads records that contain an author’s name, the title of the work, and the number of volumes. The application must read the records until eof is encountered and produce enough labels for each work.
For this assignment you need to:
create a solution algorithm using pseudocode create a flowchart using RAPTOR
PLEASE GIVE IT A THUMBS UP, I SERIOUSLY NEED ONE, IF YOU
NEED ANY MODIFICATION THEN LET ME KNOW, I WILL DO IT FOR
YOU
Pseudocode For Reading File:
start
Declarations
InputFIle records.txt
OutputFile result.txt
string authorName
string title
int numOfVol
open InputFile
open OutputFile
input authorName, title, numOfVol from records.txt
while not eof
output authorName
output title
output numOfVol
end while
close records.txt
close results.txt
END
Get Answers For Free
Most questions answered within 1 hours.