Question: I need to know how to input the following code into the complier for C++ code. It is for PLD Chapter 7 question #6. //

I need to know how to input the following code into the complier for C++ code. It is for PLD Chapter 7 question #6.

// Start

// Declarations

// InputFile masterFile;

// InputFile transactionFile;

// OutputFile newMasterFile;

// num mClientNumber, mtotalClientCost, tClientNumber, titemClientCost

// string mClientfName, mClientlName

// output "Master File Updating Starting"

// open masterFile "Master.rtf"

// open transactionFile "Transaction.rtf"

// open newMasterFile "newMaster.rtf"

// read mClientNumber, mClientfName, mClientlName, mtotalClientCost from masterFile

// read tClientNumber, titemClientCost from transactionFile

// while ( transactionFile not EOF )

// while (( masterFile not EOF) and (mClientNumber < tClientNumber))

// output mClientNumber, mClientfName, mClientlName, mtotalClientCost to newMasterFile

// read mClientNumber, mClientfName, mClientlName, mtotalClientCost from masterFile

// endwhile

// if (masterFile is EOF)

// output "Error Client ID: ", tClientNumber, " not in Master File."

// else if (mClientNumber == tClientNumber) then

// mtotalClientCost = mtotalClientCost + titemClientCost

// output mClientNumber, mClientfName, mClientlName, mtotalClientCost to newMasterFile

// read mClientNumber, mClientfName, mClientlName, mtotalClientCost from masterFile

// else if (mClientNumber > tClientNumber) then

// output "Error Client ID: ", tClientNumber, " not in Master File."

// endif

// read tClientNumber, titemClientCost from transactionFile

// endwhile

// while (masterFile not EOF)

// output mClientNumber, mClientfName, mClientlName, mtotalClientCost to newMasterFile

// read mClientNumber, mClientfName, mClientlName, mtotalClientCost from masterFile

// endwhile

// output "Master File Updating Complete"

// close masterFile

// close transactionFile

// close newMasterFile

// Stop

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 Databases Questions!