Question

In: Computer Science

NEED TO DEBUG // This pseudocode should create a list that describes annual profit // statistics...

NEED TO DEBUG

// This pseudocode should create a list that describes annual profit
// statistics for a retail store. Input records contain a department
// name (for example, “Cosmetics”) and profits for each quarter for
// the last two years. The program should determine whether
// the profit is higher, lower, or the same
// for this full year compared to the last full year.

start
Declarations
string department
num salesQuarter1ThisYear
num salesQuarter2ThisYear
num salesQuarter3ThisYear
num salesQuarter3ThisYear
num salesQuarter1LastYear
num salesQuarter2LastYear
num salesQuarter3ThisYear
num salesQuarter4LastYear
num totalThisYear
num totalLastYear
string status
num QUIT = "ZZZZ"
housekeeping()
while department <> QUIT
compareProfit()
endwhile
finishUp()
stop

housekeeping()
output "Enter department name or ", QUIT, " to quit "
input dept
return

compareProfit()
getSalesData()
sumSalesData()
if totalThisYear = totalLastYear then
status = "Higher"
else
if totalThisYear <= totalLastYear then
status = "Lower"
else
status = "Same"
endif
endif
output department, status
output "Enter department name or ", QUIT, " to quit "
input department
return

getSalesData()
output "Enter sales for first quarter this year "
input salesQuarter1ThisYear
output "Enter sales for second quarter this year "
input salesQuarter1ThisYear
output "Enter sales for third quarter this year "
input salesQuarter1ThisYear
output "Enter sales for fourth quarter this year "
input salesQuarter4ThisYear
output "Enter sales for first quarter last year "
input salesQuarter1LastYear
output "Enter sales for second quarter last year "
input salesQuarter3LastYear
output "Enter sales for third quarter last year "
input salesQuarter3LastYear
output "Enter sales for fourth quarter last year "
input salesQuarter3LastYear
return

sumSalesData()
totalThisYear = salesQuarter1ThisYear + salesQuarter2ThisYear +
salesQuarter2ThisYear + salesQuarter4ThisYear
totalLastYear = salesQuarter2LastYear + salesQuarter2LastYear +
salesQuarter3LastYear + salesQuarter4LastYear
return

finishUp()
output "End of report"
return

Solutions

Expert Solution

// This pseudocode should create a list that describes annual profit
// statistics for a retail store. Input records contain a department
// name (for example, “Cosmetics”) and profits for each quarter for
// the last two years. The program should determine whether
// the profit is higher, lower, or the same
// for this full year compared to the last full year.

Start
Declarations
   string department
   num totalThisYear
   num totalLastYear
   string status
   string QUIT = "ZZZZ" // this will be of type string not num

   department = housekeeping()
   while department <> QUIT
       department = compareProfit()
   end while  
  
   finishUp()
Stop

function housekeeping()
   output "Enter department name or ", QUIT, " to quit "
   input dept
return dept // dept name should be returned

function compareProfit()
Declarations
   num salesQuarter1ThisYear
   num salesQuarter2ThisYear
   num salesQuarter3ThisYear
   num salesQuarter4ThisYear
   num salesQuarter1LastYear
   num salesQuarter2LastYear
   num salesQuarter3LastYear
   num salesQuarter4LastYear
   num totalThisYear
   num totalLastYear
   string department
  
   [salesQuarter1ThisYear, salesQuarter2ThisYear, salesQuarter3ThisYear,salesQuarter4ThisYear,salesQuarter1LastYear,
   salesQuarter2LastYear,salesQuarter3LastYear,salesQuarter4LastYear ] = getSalesData()
  
   [totalThisYear, totalLastYear] = sumSalesData(salesQuarter1ThisYear, salesQuarter2ThisYear, salesQuarter3ThisYear,salesQuarter4ThisYear,salesQuarter1LastYear,
   salesQuarter2LastYear,salesQuarter3LastYear,salesQuarter4LastYear)
  
   if totalThisYear > totalLastYear then // the comparison operator will be greater than not equal to
       status = "Higher"
   else
       if totalThisYear < totalLastYear then // the comparison operator will be less than not less than or equal to
           status = "Lower"
       else
           status = "Same"
       end if
   end if

   output department, status
  
   output "Enter department name or ", QUIT, " to quit "
   input department
  
return department

function getSalesData()
Declarations
   num salesQuarter1ThisYear
   num salesQuarter2ThisYear
   num salesQuarter3ThisYear
   num salesQuarter4ThisYear
   num salesQuarter1LastYear
   num salesQuarter2LastYear
   num salesQuarter3LastYear
   num salesQuarter4LastYear
  
   output "Enter sales for first quarter this year "
   input salesQuarter1ThisYear
   output "Enter sales for second quarter this year "
   input salesQuarter2ThisYear
   output "Enter sales for third quarter this year "
   input salesQuarter3ThisYear
   output "Enter sales for fourth quarter this year "
   input salesQuarter4ThisYear
   output "Enter sales for first quarter last year "
   input salesQuarter1LastYear
   output "Enter sales for second quarter last year "
   input salesQuarter2LastYear
   output "Enter sales for third quarter last year "
   input salesQuarter3LastYear
   output "Enter sales for fourth quarter last year "
   input salesQuarter4LastYear
  
return (salesQuarter1ThisYear, salesQuarter2ThisYear, salesQuarter3ThisYear, salesQuarter4ThisYear,
       salesQuarter1LastYear, salesQuarter2LastYear, salesQuarter3LastYear, salesQuarter4LastYear)

function sumSalesData(salesQuarter1ThisYear, salesQuarter2ThisYear, salesQuarter3ThisYear,salesQuarter4ThisYear,salesQuarter1LastYear,
   salesQuarter2LastYear,salesQuarter3LastYear,salesQuarter4LastYear)
Declarations
   num totalThisYear
   num totalLastYear

   totalThisYear = salesQuarter1ThisYear + salesQuarter2ThisYear + salesQuarter3ThisYear + salesQuarter4ThisYear  
   totalLastYear = salesQuarter1LastYear + salesQuarter2LastYear + salesQuarter3LastYear + salesQuarter4LastYear
  
return(totalThisYear, totalLastYear)

function finishUp()
   output "End of report"
return   
  
          
          


Related Solutions

NEED TO DEBUG // This pseudocode should create a report that contains an // apartment complex...
NEED TO DEBUG // This pseudocode should create a report that contains an // apartment complex rental agent's commission. The // program accepts the ID number and name of the agent who // rented the apartment, and the number of bedrooms in the // apartment. The commission is $100 for renting a three-bedroom // apartment, $75 for renting a two-bedroom apartment, $55 for // renting a one-bedroom apartment, and $30 for renting a studio // (zero-bedroom) apartment. Output is the...
I NEED TO DEBUG THIS PSUEDOCODE // This pseudocode should determine and output the rental fees...
I NEED TO DEBUG THIS PSUEDOCODE // This pseudocode should determine and output the rental fees for cars. // Standard cars rent for $65 per day, compacts rent for $40 per day, // and subcompacts rent for $30 per day. Rentals for at least 7 days // receive a 20% discount. An error message is displayed if the car type // is not valid. start Declarations string carType num days num STD_RATE = 65 num COM_RATE = 40 num SUB_RATE...
Create a List Create a class that holds an ordered list of items. This list should...
Create a List Create a class that holds an ordered list of items. This list should have a variable size, most importantly this class should implement the interface SimpleArrayList. Feel free to add as many other functions and methods as needed to your class to accomplish this task. In other words, you have to write the code for each of the functions specified in the SimpleArrayList interface. You are not allowed to use any 3rd party data structures or libraries...
C++, Need to create a code that will calculated the statistics for character input? This is...
C++, Need to create a code that will calculated the statistics for character input? This is the prompt for the code. I truly understand nothing of what it's asking. Ask the user for one character (terminated by a carriage return).Using flow control, classify the character into one of these categories: 1)           vowel 2)           consonant 3)           digit (0-9) 4)           other Output the character input, its numeric decimal value, and the classification. Total up the number of each type of character entered....
Need this in Javascript. 1. Profit Calculator A company has determined that its annual profit is...
Need this in Javascript. 1. Profit Calculator A company has determined that its annual profit is typically 23 percent of total sales. Write a program using the file name sales_prediction.js, that displays the profit based on the user entered amount of total sales for the year. ( Program prompt the user for the projected total sales amount ). Display the profit amount formatted to two decimal places. 5 POINTS 2. Pounds to Kilogram Converter Write a program using the file...
.Create, test, and validate an XHTML document that describes an ordered list with the following contents:...
.Create, test, and validate an XHTML document that describes an ordered list with the following contents: The highest level should be the names of your parents, with your mother first. Under each parent, you must have a nested, ordered list of the brothers and sisters of your parents, in order by age, eldest first. Each of the nested lists in turn must have nested lists that list the children of your uncles and aunts (your cousins)—under the proper parents, of...
Create a list of the top 10 software engineering requirements for the organization. This list should...
Create a list of the top 10 software engineering requirements for the organization. This list should address requirements that are common to most of the software development projects rather than specific project requirements. Include descriptions for each of the requirements that provide sufficient information to align the requirements with architectural strategies that were defined in the previous week. Add the subtitle: Architecture Strategy Evaluation Discuss the pros and cons of the architectural strategy.
Create an unsorted LIST class. Each list should be able to store 100 names.
Create an unsorted LIST class. Each list should be able to store 100 names.
in java we need to order a list , if we create a program in java...
in java we need to order a list , if we create a program in java what  are the possible ways of telling your program how to move the numbers in the list to make it sorted, where each way provides the required result. list the name of sorting with short explanation
These are a list of the transactions I have from playing Monopoly. I need to create...
These are a list of the transactions I have from playing Monopoly. I need to create a balance sheet, income statement, and cash flow. STOCK- Issued $1500 common stock LAND/STOCK- $600 issued for purchase of Land 1 RENT REVENUE- $16.00 From New York Ave 2 CONSULTING REV(ACCTS REC.) - Collected $200 for passing Go 3 LAND - Purchase Kentucky Ave $220.00 4 RENT EXPENSE - $200.00 for landing on Railroad 5 CONSULTING REV(ACCTS REC.) - Collected $200 for passing Go...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT