Quote (labatymo @ Sep 16 2013 01:00pm)
double TOTALTAXES = ((Federal + State + SSTax + Medicare + PensionPlan) * GROSS) + Insurance ;
ah, thank you soo much!
its only about our 3rd week ( as you can probs tell) so forgive me for issues like this, i will change this, thanks.
Quote (labatymo @ Sep 16 2013 01:00pm)
double TOTALTAXES = ((Federal + State + SSTax + Medicare + PensionPlan) * GROSS) + Insurance ;
and your naming conventions are wrong
all your constants should be all capital letters...
Federal => FEDERAL
State => STATE
non-constants like should be lowercase, and each word after beginning with uppercase
FNAME => fName
LNAME => lName
GROSS => gross
TOTALTAXES => totalTaxes
Also, if you have a variable name with all capital letters and more than 1 word, use _ to separate the words. Ex. TOTALTAXES => TOTAL_TAXES
This post was edited by lilwillis121 on Sep 16 2013 12:07pm