The Henry Used Car Dealership

March 15, 2019

Today’s exercise is simple, but leads me to ask a question. Here is the exercise, taken directly from /r/learnprogramming:

Draw the hierarchy chart and then plan the logic for a program needed by the sales manager of The Henry Used Car Dealership.

  1. The program will determine the profit on any car sold. Input includes the sale price and actual purchase price for a car.
  2. The output is the profit, which is the sale price minus the purchase price.
  3. Use three modules. The main program declares global variables and calls housekeeping, detail, and end-of-job modules.
  4. The housekeeping module prompts for and accepts a sale price. The detail module prompts for and accepts the purchase price, computes the profit, and displays the result. The end-of-job module displays the message Thanks for using this program.

I have written the actual program, but I am struggling with the hierarchy chart. Can someone give me any guidance on this one?

Is this for real? Separate modules for each statement? Why does the detail module get input, compute profit and display the result? If you have to have separate modules to ask for the purchase price and say thank you, why not split getting the sale price, computing the profit, and printing the result into separate modules? Is this how programming students are taught these days? To take a fundamentally simple program and make it ridiculously complex by splitting it into modules? What would David Parnas say about this modularization?

Your task is to write a program to compute profit for The Henry Used Car Dealership; you might also help me understand the way this program is intended to be modularized. When you are finished, you are welcome to read or run a suggested solution, or to post your own solution or discuss the exercise in the comments below.

Advertisement

Pages: 1 2

4 Responses to “The Henry Used Car Dealership”

  1. Vincent Manis said

    HIPO charts are so 1970s. A more modern exercise would require an 11-way multiple-inheritanced class hierarchy.

  2. matthew said

    It does seem a little old-fashioned. This book seems to be the source: https://books.google.co.uk/books?id=s72HJL9Z-4AC&pg=PT97

  3. Globules said

    Here’s a Haskell version. Its only trick is that it will prompt repeatedly until you enter a valid amount.

    import Control.Monad (msum)
    import Control.Monad.IO.Class (MonadIO, liftIO)
    import Control.Monad.Trans.Maybe (MaybeT(..), runMaybeT)
    import Data.Decimal (Decimal)
    import Data.Maybe (fromJust)
    import System.IO (hFlush, stdout)
    import Text.Read (readMaybe)
    
    getProfit :: MonadIO m => MaybeT m Decimal
    getProfit = do
      purchPrice <- msum $ repeat $ readValue "Enter purchase price: "
      salePrice  <- msum $ repeat $ readValue "Enter sale price: "
      return (salePrice - purchPrice)
    
    readValue :: (MonadIO m, Read a) => String -> MaybeT m a
    readValue prompt = promptRead prompt >>= maybeRead
    
    promptRead :: MonadIO m => String -> m String
    promptRead prompt = liftIO $ putStr prompt >> hFlush stdout >> getLine
    
    maybeRead :: Monad m => Read a => String -> MaybeT m a
    maybeRead = MaybeT . return  . readMaybe
    
    main :: IO ()
    main = do
      profit <- fromJust <$> runMaybeT getProfit
      print profit
    
    $ ./usedcar
    Enter purchase price: dlkjflj
    Enter purchase price: 12345.67
    Enter sale price: 12567.89
    222.22
    
  4. Daniel said

    Here’s a solution in Python.

    from decimal import Decimal
    
    
    def housekeeping():
        global sale_price
        sale_price = Decimal(input('sale price> '))
    
    
    def detail():
        global purchase_price
        purchase_price = Decimal(input('purchase price> '))
        profit = sale_price - purchase_price
        print('profit: {}'.format(profit))
    
    
    def end_of_job():
        print('Thanks for using this program')
    
    
    if __name__ == '__main__':
        housekeeping()
        detail()
        end_of_job()
    

    Example Usage:

    sale price> 20.00
    purchase price> 10.00
    profit: 10.00
    Thanks for using this program
    

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: