Write code that will:
• Ask the user for their tax code (A or B) and annual salary
• Display the tax the person has to pay for the year. People on tax code A have to pay 25% of their salary in tax, those on tax code B must pay 30% if their salary is $45,000 or less, 33% otherwise.
Example:
What is your tax code? A
What is your annual salary? 42560
Tax due $10,640
so my question is how do i do this in Microsoft Visual studio?
I appreciate all the help and comments :)