The program will first compute the tax you owe based on your income.
User is prompted to enter income.
Program will compute the total amount of tax owed based on the following:
Income Tax
0 - $45,000 = 0.15 x income
$45,001 - $90,000 = 6750 + 0.20 x (income – 45000)
$90,001 - $140,000 = 15750 + 0.26 x (income – 90000)
$140,001 - $200,000 = 28750 + 0.29 x (income – 140000)
Greater than $200,000 = 46150 + 0.33 x (income – 200000)
Dollar amounts should be in dollars and cents (float point numbers with two decimals shown).
Tax is displayed on the screen.
No Answer is Posted For this Question
Be the First to Post Answer
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
What is the argument of a function in c?
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item
helllo sir give me some information of the basic information the c as printf ,scanf , %d ,%f and why is the main use of these.
WHAT IS HEADER?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
an algorithem for the implementation of circular doubly linked list
explain what is a newline escape sequence?
Is the following code legal? struct a { int x; struct a b; }
Diff between for loop and while loop?