Search:

Type: Posts; User: GregBrannon

Search: Search took 0.12 seconds.

  1. Re: Attempting to calculate a budget and using public static double method(...)

    I'm sorry. I don't know why taze responded in your thread. I thought it was you.

    Post your updated code and the error message that goes with it.
  2. Re: Attempting to calculate a budget and using public static double method(...)

    Glad to have helped and that you figured it out.
  3. Re: Attempting to calculate a budget and using public static double method(...)

    You're getting it, just not quite there yet. You're calling the methods, and the methods are returning values, but the program is not using the returned values. You can eliminate these variables by...
  4. Re: Attempting to calculate a budget and using public static double method(...)

    Which of the following orders of operations will be successful:

    1 -
    c = a + b
    a = 5
    b = 8

    2 -
    a = 5
    c = a + b
  5. Re: Attempting to calculate a budget and using public static double method(...)

    It's pointing at line 49. This forum doesn't show us line numbers, so posting code snippets usually requires pointing us to which posted line is being complained about. In this case, it's pretty...
  6. Re: Attempting to calculate a budget and using public static double method(...)

    When someone says, "Post the exact error message you get," they mean copy the errors and stack trace you get when you run the code (show a sample run if possible), and paste what you've copied...
Results 1 to 6 of 6