//set monthly salary for us. If monthly salary is negative or zero, it will default to zero
public double setmonsal(double msal)
{
if (monsal > 0.0)
monsal = msal;
return monsal;...