For Loop Declining Balance

Apr 10, 2015

This is my current code:

import java.util.*;
public class Testing
{
public static void main(String[] args)
{
Scanner keyboard = new Scanner(System.in);
int loanAmount, loanDurationYears, periods;
double interestRate, monthlyPayment, totalInterest, balance;
 
[Code] .....

Output:

Enter loan amount:90000
Enter loan duration in years:15
Enter interest rate as a percent:6.75
Loan amount: $90000
Loan duration: 15 years

[Code] ....

How the output should look:

Enter loan amount: 90000
Enter loan duration in years: 15
Enter interest rate as a percent: 6.75
 
** RESULTS **
 
For a 15 year loan of $90000.00 at 6.75% interest --
 
Monthly payment = $796.42
Total interest =$53355.33
 
Yearly balances
 
YearInterestLoan Balance
15965.23 86408.21
25715.14 82566.33
35447.64 78456.94
45161.51 74061.43
54855.46 69359.87

[Code] ....

There seems to be a lot of things wrong with the output I get, but I'm not sure why. How do I get the output to print in columns? Also, how do I get the numbers to round?

View Replies


ADVERTISEMENT

How To Sort A List By Balance

Mar 26, 2014

Add accounts on a list, each account contain: name, accountCode, pinCode, balance.

How to show list sort by balance?

View Replies View Related

Show Balance In Simple ATM

Nov 25, 2014

This code models a simple ATM machine that can deposit, withdraw, and show the 10 latest transactions in an array of 10 index values.

My problem is that I can't get the balance right after 10 deposits, the balance only seems to sum the values in my array, not including the transactions made before those ten.

import java.util.Scanner;
public class cashier2 {
public static void main(String[] args) {
Scanner keyboard = new Scanner(System.in);
int amount = 0;

[Code] ....

View Replies View Related

Account Balance Does Not Change

Apr 13, 2014

I need to make a program that uses an object to calculate balance

import java.util.Date;
public class Account {
/** Setup Default Variables */
private int id = 0;
private double balance = 0;
private double annualInterestRate = 0;

[Code] ....

View Replies View Related

How To Display Amount Paid By User And Show Balance

May 3, 2015

I've four classes object. I don't know how to display the amount paid by the user, and show the balance. The calculate button just show the total amount. Do I have to create another object class? And I've to show the bills too.

This is my 1st Frame

import javax.swing.*;
import java.awt.*;
//titlepanel class displays a title in a panel
public class TitlePanel extends JPanel {
public TitlePanel() {
JLabel title = new JLabel();

[Code] .....

View Replies View Related

Bank Account - Balance Must Be A Floating Point Number

Sep 21, 2014

Develop the class “Account” to be used by a bank. The Account class should have a single instance variable “balance”. Remember that balance must be a floating point number. The required methods for the Account class are shown below.

The Account class “debit” method should return a Boolean and should not allow an overdraft. If a withdraw greater than the current balance is attempted, the function should immediately return “false” and do nothing else.

Develop a test class to thoroughly test all aspects of the Account class. DO NOT change the class name or instance variable name given or the required method names as detailed below.

Account
1 constructor with no parameters (default balance to 0)
1 constructor with a balance parameter
setBalance method
getBalance method
credit method
debit method

I have the test class done, I won't need to put that in till later. My main problem is I'm not sure how I'm going to be able to get debit and setBalance to work together with each other.

public class Account
{
protected double balance;
// Constructor to initialize balance
public Account( double amount ) {
balance = amount;

[Code] ....

You can see I'm stressed out by not reading over my code. I already have the "Debit" in use, just have to change it. Which I did.

View Replies View Related

Unable To Print A Loop Inside Array Of Greater Size Than Loop Itself

Jan 27, 2015

I am trying to print a loop inside an array of a greater size than the loop itself. Like for example I have an array of size 7 but it has only 3 elements.

int[] array=new int[7]
array[0]=2;
array[1]=3;
array[2]=4;

now what I want to do is print these three numbers in a loop so that my array[3]=2;array[4]=3;array[5]=4 ...... till the last one. Also the array could be any size and not just 7.

View Replies View Related

While Loop Inside A For Loop To Determine Proper Length Of Variable

Feb 25, 2014

Here's the code: it's while loop inside a for loop to determine the proper length of a variable:

for (int i = 0; i < num; i++) {
horse[i]=new thoroughbred();
boolean propernamelength = false;
while (propernamelength==false){
String name = entry.getUserInput("Enter the name of horse "

[code]....

I was just wondering what was going on here -- I've initialized the variable, so why do I get this message? (actually the carat was under the variable name inside the parentheses.

View Replies View Related

When Type Quit To Close Outer Loop / It Still Runs Inner Loop

Nov 2, 2014

I have everything else working. My problem is that when i type "quit" to close the outer loop. It still runs the inner loop. The National Bank manager wants you to code a program that reads each clients charges to their Credit Card account and outputs the average charge per client and the overall average for the total number of clients in the Bank.

Hint: The OUTER LOOP in your program should allow the user the name of the client and end the program when the name entered is QUIT.In addition to the outer loop, you need AN INNER LOOP that will allow the user to input the clients charge to his/her account by entering one charge at a time and end inputting the charges whenever she/he enters -1 for a value. This INNER LOOP will performed the Add for all the charges entered for a client and count the number of charges entered.

After INNER LOOP ends, the program calculates an average for this student. The average is calculated by dividing the Total into the number of charges entered. The program prints the average charge for that client, adds the Total to a GrandTotal, assigns zero to the Total and counter variables before it loops back to get the grade for another client.Use DecimalFormat or NumberFormat to format the numeric output to dollar amounts.

The output of the program should something like this:

John Smith average $850.00
Maria Gonzalez average $90.67
Terry Lucas average $959.00
Mickey Mouse course average $6,050.89
National Bank client average $1,987.67

Code:

public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
String name = "";
int charge = 0;
int count = -1;
int total = 1;
int grandtotal = 0;
int average = 0;
 
[code]....

View Replies View Related

Convert From While Loop To For Loop

Mar 8, 2014

How to convert this program from a while loop to a for loop.

import java.util.Scanner;
public class LongDivision {
public static void main(String arguments[]){
Scanner input = new Scanner(System.in);
System.out.println("Enter the dividend: ");

[Code] ....

View Replies View Related

Converting For Loop To While And Do While Loop

Feb 17, 2014

How do I convert my for loop below to a while and do while loop?

for(int a=1;a<=9;a++){
for(int b=1;b<=a;b++){
System.out.print(a);
}
System.out.println();

[Code] .....

View Replies View Related

How To Store Value From Loop To Add To New Value From Loop

Feb 9, 2015

I am trying to make a program add values from a loop. So what its supposed to do is search through tokens on an imported file. The file lists State, Capital, and then capital population. Then take the population string, turn it into numbers, and then do stuff with the numbers. First I'm supposed to find the Highest and lowest population of the places in the file (which I did without problem), but the finally thing is I'm supposed to add each found population to the last so I can find the average of the populations.

I just cannot seem to grasp how to do that. I THINK I'm supposed to some how store the given value into a variable, but how do I get that variable to add to the new value?

like...?
Get token -> a
b = a
c = a + b

or wait no.....

Java Code :

import java.io.*;
import java.util.Scanner;
public class CapPopS
{
public static void main(String[] args) throws IOException
{
File stateCAP = new File("state-capital-2004population.txt");
if (!stateCAP.exists())

[Code] ....

View Replies View Related

How To Add Within Loop

Feb 9, 2015

My teacher wants me to make a program that counts the amount of steps a student takes a day. The program asks for other info such as name, age, college. However I need to write a loop that will allow the user to enter how many ever steps they took and convert them to miles.how exactly to make the steps entered by the user within the loop be their own individual days like monday tuesday etc. Like the loop will ask how many steps did you take monday.. tuesday.. etc for each time it runs.

package StudentInfo;
import java.util.Scanner;
public class studentinfo {
public static void main (String [] args){
Scanner scan = new Scanner(System.in);

[code]....

View Replies View Related

How To Use While Loop

Apr 5, 2014

I need to write a program that measures how long it will take someone to make a million dollars if he is being paid $5.75 an hour, but the pay rate is increase by 0.2% each week after the third week.

View Replies View Related

Why Won't FOR Loop End

Feb 18, 2014

This is the first time I've ever gotten an infinite loop with a FOR loop. This program is supposed to let you enter five integer numbers and draw a bar chart based on those numbers. After the fifth number is entered, guess what? It wraps back around to zero again and starts over! Why the bleep doesn't it stop? The code is below:

Java Code: import java.awt.Graphics;
import javax.swing.JPanel;
import java.util.Scanner;

[Code]...

View Replies View Related

Inner If Loop Code

Mar 23, 2015

Can i write inner if loop without { and } if it has more lines of code as below

public class TEst111 {
/**
* @param args
*/
public static void main(String[] args) {
int num=11;
// TODO Auto-generated method stub
if (num < 10)

[code]....

I tested to see outer if which does not need { and } even though it has multiple lines in that

View Replies View Related

Conversion From While To For Loop

Aug 3, 2014

I just started to teach myself loops. I am trying to convert the while loop into for loops, however somehow I do not get the same printout.

While loop:
import java.util.Scanner;
public class Test {
public static void main(String[] args) {
int i = 1;
int sum = 0;

[Code] ....

Print:
sum is 0 and i is 1
sum is 1 and i is 2
sum is 3 and i is 3
sum is 6 and i is 4

View Replies View Related

Loop To Add Integers From 1 To 50?

Mar 11, 2014

Create a loop where you add the integers from 1 to 50.

public class Sum50 {
public static void main(String[] args) {
int sum = 0;
int max = 50;
for(int i = 0;i <= max; i++){
sum=sum+i;
}
System.out.println("Sum is " + sum);
}
}

View Replies View Related

Semicolon After For Loop Is Not Necessary

Jun 15, 2014

I'm fairly new to programming, just started yesterday with a book I downloaded of the net. The book comes with a couple of examples on how to code and they all seem to work fine except for this loop.

class fordemo {
public static void main(String args[] ) {
int count;
for(count = 0; count < 5; count = count+1);
System.out.println(" This is count: " + count);
System.out.println("Your are all done! ");
}
}

I can't seem to find the problem. All it gives me is,
"This is count: 5
You are all done!"

When it's supposed to give me,

"This is count: 1
This is count: 2
This is count: 3
This is count: 4
You are all done!"

Found the error, semicolon after the for loop is not necessary. Should be...

class fordemo {
public static void main(String args[] ) {
int count;
for(count = 0; count < 5; count = count+1)
System.out.println(" This is count: " + count);
System.out.println("Your are all done! ");
}
}

View Replies View Related

Keylistener In A Loop?

Jun 16, 2014

I am trying to program a version of the "Worlds Hardest Game" using ready to program and applets for a final class project. Unfortunately I cannot figure out how to get my keylistener to work because I am using a loop for the enemies to go back and forth.

import java.applet.*;
import java.awt.*;
import java.awt.event.*;
 public class HardestGame extends Applet
implements KeyListener, MouseListener {
final int WIDTH = 400;
final int HEIGHT = 123;
int myX = 400;
int myY = 400;

[code]...

View Replies View Related

How To Use Try Catch In Do While Loop

Jun 9, 2014

I wrote a program using switchcase.I used do while to show the menu to the user until the user decides to exit the menu.I used try catch to prevent ant exception and it worked properly.But i got one problem.When exception occurs,desired msg is printed but i am unable to display the menu to the user.So user wont be able to continue after an exception is caused.

View Replies View Related

Getting Right Answer In While-loop

Jan 29, 2015

If I for example choose 8 as "multiplikationstabell" and 4 as "faktor" the whole code works except that "svar" gets printed as 8 in every turn. Why? "Faktor" gets added with 1 every time but "svar" stays at 8.......

import java.util.Scanner;
 public class Multiplikationstabell {
 public static void main(String args[]){
 Scanner Heltal = new Scanner(System.in);

[Code] .....

View Replies View Related

For Loop - How To Get Rid Of Redundancy

Jan 21, 2015

PHP Code:

public static void drawFirstHalf() {
for (int line = 1; line <= SIZE; line++) {
System.out.print("|");
for (int dots1 = 1; dots1 <= SIZE - line; dots1++) {
printDot();

[Code] ....

How would I get rid of the redundancy of the dots1 and roof for loop in the nested for loop? The lines are just repeated and I'm not sure how to get rid of the redundancy.

View Replies View Related

Loop Not Stopping Where It Should

Sep 14, 2014

I am doing a simple program, just to find multiples of 7 all the way to 125. But the loop its not stopping at 125 and is going to 126.

public class Assingment2B {
public static void main(String[] args) {
int number = 0;
while (number <= 125) {
number += 7;
if (number % 7 == 0) {
System.out.println(number);

[code]....

View Replies View Related

Nested Do While Loop

Apr 5, 2014

just trying to learn it on my spare time and I'm doing do-while loops

public class help {
public static void main (String args[])
throws java.io.IOException {
char choice, ignore;
do{
System.out.println ("Choose one:");
System.out.println("1. if");
System.out.println("2.switch");
 
[code]....

It makes no difference in the program wither i delete this block or keep it..how while (choice < '1'| choice >'2'); translates? I would assume it would be while (choice >= '1'| choice =<'2');?

View Replies View Related

While Loop With BigInteger

Sep 4, 2014

i want to make an while loop that uses a bigInteger. but it want do it, so what do i do?

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved