The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
Would you like to process a payroll record. y/n?
Please enter employee ID:123
Please enter employee Name:John Doe
Please enter employee Hours:40
Please enter employee Wage:$10.00
Would youlike to process another payroll. y/n?
Please enter employee ID:124
Please enter employee Name:Jane Smith
Please enter employee Hours:45
Please enter employee Wage:$20.00
Would you like to process another payroll record. y/n?
ID Name HRS Wage Gross SOCSEC STATE FED NET
123 Doe, John 40 10.00 400.00 25.20 14.00 68.00 292.80
124 Smith, Jane 45 20.00 950.00 59.85 33.25 161.50 695.40
End of program.
Press any key to continue
Note: All of the answers after the : of each statement is manually typed in when running the program.
This is the pseudocode that was given to me to use for this project.
const double socSecRate = 0.063;
const double stateRate = 0.035;
const double federalRate = 0.17;
const int maxsize = 10;
int arrays empID, empHours;
double array empWage;
string array empName;
all of size max as well as integer i for the array index and a character response. Initialize all values o numeric arrays to zero and string array to "default".
IF ANYONE CAN WRITE THIS PLEASE EMAIL IT TO ME BY THURSDAY AT 10:00am.
I know I am asking all lot but this is a very important project it determines wether I fiish my degree or not!!!!!
Thank you to whoever helps out at all.
[email protected]
> No I am American/Greek/ German/ Polish/ Indian/ French/ Chec
I love the Checs
> Why don't you do yourself a sexual favor from your tone it sounds as
> if you need one!!!!!!
>
> Lacking of therefore
*fap fap fap fap fap*
If it is part of your course then surely you should have been taught the basics to get it done?
What kind of degree you doing?
Also does it have to be done in C++?
How much you willing to pay one of us to do it for you then? :-)
#include
#include
using namespace std;
int main()
{
string empName;
int empID, empHours, y;
double empWage;
const double socSecRate=0.063;
const double stateRate=0.035;
const double federalRate=0.17;
const int maxsize=10;
cout<<"Would you like to process a payroll record. y/n?";
cin>>y;
cout<
cin>>empID;
cout<
cin>>empName;
cout<
cin>>empHours;
cout<
cin>>empWage;
cout<
return 0;
}
The rest is on paper it is the cin that I am having problems with