Hi james, This is your complete program. Use it and enjoy...and click on Thanks link plz
import java.util.*;
class football
{
static Scanner console = new Scanner(System.in);
public static void main(String[] args)
{
double wages ;
double rate ;
double hours;
double clothesexp;
double twagesatax;
double schsupply;
double sbonds;
System.out.print("Enter hours worked:");
hours = console.nextDouble();
System.out.println();
System.out.print("Enter pay rate:");
rate = console.nextDouble();
System.out.println();
wages = hours * rate;
System.out.println("The wages are :" + wages);
System.out.println(" Total wages before taxes:" + wages );
twagesatax = (float)14/100 * wages;
System.out.println(" Total wages after taxes:" + twagesatax );
clothesexp = (float)10/100 * (wages - twagesatax);
System.out.println("Total money spend on clothes and other accessories :" + clothesexp );
schsupply = (float)1/100 * (wages-(twagesatax + clothesexp));
System.out.println("Total money spend on school supplies :" + schsupply );
sbonds = (float)25/100 * (wages-(twagesatax + clothesexp + schsupply));
System.out.println("Total money spend on saving bonds :" + sbonds );
}
}