software development method
play

Software Development Method 1. Specify the problem requirements 2. - PDF document

Software Development Method 1. Specify the problem requirements 2. Analyze the problem Algorithms 3. Design the algorithm to solve the problem 4. Implement the algorithm 5. Test and verify the completed program 6. Maintain and update the


  1. Software Development Method 1. Specify the problem requirements 2. Analyze the problem Algorithms 3. Design the algorithm to solve the problem 4. Implement the algorithm 5. Test and verify the completed program 6. Maintain and update the program Software Development Method Algorithms 1. Specify the problem requirements • Step-by-step procedure for solving a • In this class, often done for you problem 2. Analyze the problem • Your job – what are the inputs and outputs • Be as specific as possible – include all 3. Design the algorithm to solve the problem steps • Your job – write it down and turn it in! 4. Implement the algorithm • Your job 5. Test and verify the completed program • Example – doing your laundry • Your job – this is the most time consuming part • Go back to step 4 if your program fails the tests 6. Maintain and update the program • Always assume you will reuse your code at some point #A program to calculate tax and total cost for an item. Calculate Tax on an Item #determine rate of taxation • Problem #ask user for the cost of the item • Analysis #calculate the tax • Algorithm design • Implementation #calculate total cost • Testing #display the results • Maintenance 1

  2. #Name: Sami Rollins Heading #A program to calculate tax and total cost for an item. #determine rate of taxation TAX_RATE = .0825 #Name: Sami Rollins #ask user for the cost of the item #A program to calculate tax and total cost for an item. cost = input("Enter item cost: ") #calculate the tax tax = cost*TAX_RATE • Indicates what the program does • Comments #calculate total cost total = cost+tax – # to the end of the line #display the results print "Cost: ", cost print "Tax : ", tax print "Total: ", total Variables Input #determine rate of taxation #ask user for the cost of the item TAX_RATE = .0825 cost = input("Enter item cost: ") • Sets the value of the variable TAX_RATE • Prompt the user for the cost of the item to be .0825 and store the response in the variable cost Calculation Calculation #calculate total cost #calculate the tax total = cost+tax tax = cost*TAX_RATE • Multiply the cost times the tax rate and • Add the cost and the tax and store the store the result in the variable tax result in the variable total 2

  3. Output Exercises 1. Write the algorithm for a program that #display the results takes as input the number of miles a car print "Cost: ", cost print "Tax : ", tax has traveled and the number of gallons print "Total: ", total of gas the car has consumed and • Display the results for the user calculates the number of miles the car can travel on one gallon of gas Exercises 2. Write the program for the algorithm you just generated using the tax program as a template 3

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend