Search:

Type: Posts; User: snowguy13

Search: Search took 0.12 seconds.

  1. Re: Need help with my code for calculating monthly payment on a loan

    To display a variable's value, you simply put it into the println statement.

    For example:


    int number = 2;
    System.out.println("The number is " + number);


    The result of this would be:
  2. Re: Need help with my code for calculating monthly payment on a loan

    You never tell the program to display monthlyPayment's value. That may be why it's not showing. :)
Results 1 to 2 of 2