I am having two issues with a bit of simple code I am trying to write for my java class. Sorry if this seems easy to most of you, I am just starting with Java. the first issue i am having is the loop doesnt continue properly. It runs once just fine, and will exit if "quit" is entered at the start, but after it runs once, it wont let the use enter another value for emp name. it goes straight from the last line enter emp name to the first line of the loop, enter hourly rate, with no chance to enter a new name or quit.
My second issue, is my if statements are trying to make sure teh values entered for hourly rate and hours worked are greater then 0. If 0 is entered it gives the error message just fine, but if a negative number is entered the program continues like nothing is wrong. How do i make sure the value entered is ONLY a positive double, and that it wont accept a negative double or zero?
// Program to Calculate Payroll
import java.util.Scanner;
import java.text.DecimalFormat;
class Payroll
{
public static void main(String args[])
{
Scanner myScanner = new Scanner(System.in);
String empName;
double hourlyRate;
double hoursWorked;
double grossPay;
double netPay;
double taxes;
DecimalFormat money = new DecimalFormat("$.00");
//Get User Information
System.out.print( "Enter employee name or enter 'quit' when finished. " );
empName = myScanner.nextLine();
while (!empName.equals("quit"))
{
System.out.print( "What is their hourly rate? $");
hourlyRate = myScanner.nextDouble();
if (hourlyRate <= 0)
{
System.out.println( "Value is not valid, please enter an amount above zero.");
System.out.print( "What is their hourly rate? $");
hourlyRate = myScanner.nextDouble();
}
System.out.print( "How many hours did they work? ");
hoursWorked = myScanner.nextDouble();
if (hoursWorked <= 0)
{
System.out.println( "Value is not valid, please enter an amount above zero.");
System.out.print( "How many hours did they work? ");
hoursWorked = myScanner.nextDouble();
}
//Calculate Pay and Taxes
grossPay = hourlyRate * hoursWorked;
taxes = .13 * grossPay;
netPay = grossPay - taxes;
//Display All Information
System.out.print( "Employee name: ");
System.out.println(empName);
System.out.print( "Hourly Rate: ");
System.out.println(money.format(hourlyRate));
System.out.print( "Hours Worked: ");
System.out.println(hoursWorked);
System.out.print( "Gross Pay = ");
System.out.println(money.format(grossPay));
System.out.print( "Federal Taxes = ");
System.out.println(money.format(taxes));
System.out.print( "Net Pay = ");
System.out.println(money.format(netPay));
System.out.print( "Enter employee name or enter 'quit' when finished. " );
empName = myScanner.nextLine();
}
System.out.println( "Thank you for using this payroll program.");
}
}

