Alright guys in in my first semester of college and im taking a java programming class. My first project is due sunday but my first file is not correct according to netbeans. can you guys please help me find the error. im still a noob with all this programming.
Im writing my test class now
Code:
public class Employee
{
private String employeename;
private double salary,
bonus,
salaryafterbonus;
Employee(String e, double s, double b)
{
employeename = e;
salary = s ;
bonus = b ;
}
public String getEmployeename()
{
return employeename;
}
public String getSalary()
{
return salary;
}
public String getBonus()
{
return bonus;
}
void calculate()
{
salaryafterbonus= salary + bonus;
}
}
Im writing my test class now