Hey guys,
Would you mind helping me with these questions, Thank you in advance
_ Draw a flowchart for a program that calls a function tax() that accepts dollar amount and a tax rate and return the tax due on the dollar amount. For example, if the number 100.00 and 0.06 are passed to the function, the value returned should be 6.00 , which is 100.00 times .06 .
Program should print the returned value by the function. Repeat the process as long as user wishes.
_ Draw a flowchart for a program that calls a function pass () that returned a reject or accept code depending on weather the value of tolerance of group of parts is less than or greater than 1%. If the value is less than 1.0%, the function should return an A for accept, else it should return an R for reject.
Thank you indeed.