Using Powerpoint, Word, Visio or any other graphical editor that allows you to create shapes and arrows, create a simple flow chart that provides the functionality for this pseudocode:
Write "Enter the price in dollars: "
Input Price
Write "Enter state sales tax(e.g. .06) : "
Input SalesTax
Set Price = Price + (Price * SalesTax)
Write "Price with Tax is " + Price
Also, Provide a test case that you could use to validate your algorithm. (For example, what values for input would you use and what would the resulting output be for those input values)
Attach or embed your flow chart along with your test case as a response to this discussion topic.