You will get email Reply within few hours

Thursday, 16 May 2013

Federal Tax With Functions

The primary objective of the solution remains to compute federal personal income taxes. The solution can have NO global variables. The tax liability depends on how much money one makes as well as their filing status. For our purposes we will use four filing statuses. These are (1)single filers, (2)married filing jointly, (3)married filing separately, and (4)head of household.
Tax Rate SingleFilers MarriedFilingJointly MarriedFilingSeparately HeadofHouse
10% Up to $7,550 Up to $15,100 Up to $7,550 Up to $10,750
15%$7,551-$30,650 $15,101-$61,300 $7,551-$30,650 $10,751-$41,050
25%$30,651-$74,200 $61,301-$123,700 $30,651-$61,850 $41,051-$106,000
28%$74,201-$154,800 $123,701-$188,450 $61,851-$94,225$106,001-$171,650
33%$154,801-$336,550 $188,451-$336,550 $94,226-$168,275$171,651-$336,550
35%$336,551 or more $336,551 or more $168,276 or more $336,551 or more
For each filing status there are six tax rates. Each rate is applied to a given amount of the taxable income. For example, for a taxable income of $450,000 for a single filer, $7,550 is taxed at 10%, ($30,650-$7,550) at 15%, ($74,200-$30,650) at 25%, ($154,800-$74,200) at 28%, ($336,550-$154,800) at 33%, and ($450,000-336,550) at 35%.

The six tax rates are to be stored in a one-dimensional array with data type float. The four filing status descriptions are to be stored in a one-dimensional array of data type string..

Your program should be modular and contain at least 4 user defined functions beyond the main() function. You are to follow these specifications as closely as possible. You should have functions that do the following:

I have the rest of it can upload the entire file if needed!

EMAIL ME For Solution:
topsolutions8@gmail.com