Question
Draw the flowchart or pseudocode for an application that allows a user to enter the price of an item and computes 8 percent sales tax on the item.
Answers
Isiah
main() {
float x = get_user_input();
x * .08;
return x;
}
float x = get_user_input();
x * .08;
return x;
}