C++ program in Bloodshed Dev C++, I was told by the compiler log that I have 1 error and I cant figure it out!
#include <iostream.h>
int 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