CompoundValue.java completed?
This commit is contained in:
parent
05389258ab
commit
1ab026d1cd
@ -11,17 +11,27 @@ import java.util.Scanner;
|
||||
* @author caleb
|
||||
*/
|
||||
public class CompoundValue {
|
||||
|
||||
public static void main(String[] args) {
|
||||
// Create Scanner
|
||||
Scanner input = new Scanner(System.in);
|
||||
|
||||
// Define vars
|
||||
double SavingAmount;
|
||||
|
||||
// Prompt for input
|
||||
System.out.println("");
|
||||
// Compute
|
||||
|
||||
// Print result
|
||||
// Define vars
|
||||
int counter;
|
||||
double SavingAmount;
|
||||
double InterestRate;
|
||||
|
||||
// Prompt for input
|
||||
System.out.print("Enter monthly saving amount: ");
|
||||
SavingAmount = input.nextDouble();
|
||||
|
||||
// Compute and Print result
|
||||
InterestRate = 0.05 / 12;
|
||||
SavingAmount = SavingAmount * (1 + InterestRate);
|
||||
System.out.println("The account is " + SavingAmount + " after month 1");
|
||||
for (counter = 2; counter <= 6; counter++) {
|
||||
SavingAmount = (100 + SavingAmount) * (1 + InterestRate);
|
||||
System.out.println("The account is " + SavingAmount + " after month " + counter);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user