Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Every line of pseudo code can be tricky. Do not remove the questions or text from the Template. Mark any additions to the pseudocode by

Every line of pseudo code can be tricky. Do not remove the questions or text from the Template. Mark any additions to the pseudocode by adding lines and showing them in red. Strikeout any deletions using the strikeout tool. Assume that the pseudocode below for each question is a separate working program in your organization and that it needs modifications as described in the comments (lines that begin with two slashes)at the beginning of the code. Your job is to alter the pseudocode to meet the new specifications as noted above. Please follow directions as specified in the homework assignment instructions file. NOTE: If a function has no changes to be made to it,then it will be in blue font.
-----------------------------------------------------------------------------------------
// This application reads sales data for a real estate broker. The user
// enters a record for each of 10 salespeople containing the salesperson's
// name, the number of properties sold by that person during the month,
// and the total value of those properties. The data records are sorted by // value so the data for the top three salespeople can be displayed.
// Modify the program to:
//(1) enter data for any number of salespeople up to 60
//(2) allow the user to choose whether to see
//(a) the data for the top three salespeople
//(or fewer if 3 are not entered) by value
//(b) the data for the top three salespeople
//(or fewer if 3 are not entered) by
// number of properties sold
start
// Declarations
num SIZE =10
string names[SIZE]
num properties[SIZE]
num values[]
num count
num NUM_TO_DISPLAY =3
num comps
num x
num y
num tempProp
num tempVal
string tempName
string QUIT ="ZZZZ"
string choice
num numEntered
call getReady()
call display()
call finish()
stop
getReady()
count =0
output "Enter salesperson name
output tempName
while tempName != QUIT OR count <= SIZE
names[count]= tempname
output "Enter number of properties sold "
input properties[tempname]
output "Enter total value of those properties "
input values[tempname]
count = count +1
if count <= SIZE then
output "Enter salesperson name or ", QUIT, " to quit "
output tempName
endif
numEntered = count
end
return
display()
choice ="X"
while choice <>"P" OR choice <>"V"
output "Do you want to see the top three salespeople by (V)alue"
output "or by number of (P)roperties sold? "
output choice
endwhile
if choice ="V"
valueSort()
else
propertySort()
endif
count =0
if numEntered <=3 then
numToDisplay = numEntered
else
numToDisplay =3
endif
while count <= numToDisplay
output names[count], properties[count], values[count]
count = count +1
end
return
finish()
output "End of display"
return
valueSort()
comps = numEntered +1
while y <= comps
x =0
while x <= comps
if values[x]<= values[x +1] then
swap()
endif
x = x +1
endwhile
y = y +1
end
return
propertiesSort()
comps = numEntered +1
while y <= comps
x =0
while x <= comps
if properties[x]<= properties[x +1] then
swap()
endif
x = x +1
endwhile
y = y +1
end
return
void swap()
tempName = names[x -1]
names[x -1]= names[x]
names[x]= tempName
tempProp = properties[x -1]
properties[x -1]= properties[x]
properties[x]= tempProp
tempVal = values[x -1]
values[x -1]= values[x]
values[x]= temp
return

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

Concepts of Database Management

Authors: Philip J. Pratt, Mary Z. Last

8th edition

1285427106, 978-1285427102

More Books

Students also viewed these Databases questions