i get 3 build errors when i use the numbers, the simple payroll program aint so simple for me im using java tools in x-code
#include <iostream>
using namespace std;
main() {
int employeeid;
int hoursworked;
float hourlyrate, grosspay, taxamount, netpay;
float const TAXRATE = 0.10;
cout << "ENTER THE EMPLOYEE ID: ";
cin >> employeeid;
cout << "ENTER THE HOURS WORKED: ";
cin >> hoursworked;
cout << "ENTER THE HOURLY RATE: ";
cin >> hourlyrate;
grosspay = hoursworked * hourlyrate;
taxamount = grosspay * TAXRATE;
netpay = grosspay - taxamount;
cout << "EMPLOYEE ID IS " << employeeid << endl;
cout << "THE HOURS WORKED ARE " << hoursworked << endl;
cout << "THE HOURLY RATE IS " << hourlyrate << endl;
cout << "THE GROSSPAY IS " << grosspay << endl;
cout << "THE TAXAMOUNT IS " << taxamount << endl;
cout << "THE NETPAY IS " << netpay << endl;
return 0;
}//MAIN