Help, I have a good pseudocode written that is supposed to get the title of a person and how many boxes in an order and print labels.

Here is the pseudocode, please help.

start
Declarations
string title
string firstName
string lastName
string streetAddress
string city
string state
num zip
num numBoxes
num count
string enterAnother = “Y”
input title, firstName, lastName, streetAddress, city, state,
zip, numBoxes
while not eof
count = 1
while count <= numBoxes
output title, firstName, lastName
output streetAddress
output city, state, zip
output “Box ”, count, “ of “, numBoxes
count = count + 1
endwhile
enterAnother = “ ”
input enterAnother
if “Y” or “y”
input title, firstName, lastName, streetAddress, city,
state, zip, numBoxes
endwhile
stop

Recommended Answers

All 2 Replies

Do you think we are going to do your homework for you??
Why dont you first try to do it yourself..... and maybe we can help you when you get stuck, and remember if you get stuck, search around on Google and daniweb, because your question might already be answered.
goodluck

You did not say what help you need! Please ask specific questions.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.