Results 1 to 2 of 2
Thread: looop help
- 01-15-2009, 08:06 PM #1
Member
- Join Date
- Oct 2008
- Posts
- 39
- Rep Power
- 0
looop help
Any advise on what is wrong with my loop please?
public static void main (String[]arg){
double loan;
double wages;
final int THRESHOLD= 10000;
double netInc;
double newBal=0;
double totalLoan;
double deduction;
System.out.println("Enter total amount of student loan taken");
loan=UserInput.readDouble();
System.out.println("Enter anticipated income");
wages=UserInput.readDouble();
newBal=loan*0.03;
netInc=wages-THRESHOLD;
deduction=netInc*0.09;
totalLoan=loan+newBal;
newBal=totalLoan-deduction;
System.out.println("Loan taken out: "+loan+" anticipated income "+wages);
System.out.println("Total plus interest: "+totalLoan);
System.out.println("Amount Re-paid: "+ deduction);
System.out.println("New balance: "+newBal);
}
public static calculate(double amount)
{
while(newBal >0.0){
newBal=loan*0.03;
netInc=wages-THRESHOLD;
deduction=netInc*0.09;
totalLoan=loan+newBal;
newBal=totalLoan-deduction;
System.out.println("Loan taken out: "+loan+" anticipated income "+wages);
System.out.println("Total plus interest: "+totalLoan);
System.out.println("Amount Re-paid: "+ deduction);
System.out.println("New balance: "+newBal);
}
else {
System.out.println("end ");
}
}
}//end main
}//end class
- 01-15-2009, 09:04 PM #2


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks