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
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
what is the difference between malloc() and calloc() function?
What is %lu in c?
How do you prevent buffer overflows in C?
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
Why c language?
code for reverse alternate words from astring
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
difference between ordinary variable and pointer in C?
What is the basic structure of c?
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*