import java.util.Scanner;
class Tutorial
{
public static void main(String[] args);
{
Scanner kb = new Scanner(sysem.in);
double = hourlyrate;
double = hoursworked;
double = grosspay;
double = netpay;
double = taxrate 0.15;
double = taxwithheld;
System.out.println("Please enter rate of pay?" );
hourlyrate = kb.nextdouble();
System.out.println("Hours Worked?" );
hoursworked = kb.nextdouble();
System.out.println("Gross pay:" )+(grosspay = hoursworked*hourlyrate);
System.out.println("Tax Withheld:" )+(taxwithheld= grosspay*taxrate);
System.out.println("netpay:" )+(netpay= Grosspay-taxwithheld);
}
}