Search:

Type: Posts; User: jpharte

Search: Search took 0.13 seconds.

  1. Replies
    4
    Views
    1,166

    Re: Specifying the file location

    You may not have permission to write to a file in your root directory and may want to change it to a different directory. I am, of course, presuming you are working on a Windows platform.
  2. Thread: Array Problem

    by jpharte
    Replies
    14
    Views
    1,268

    Re: Array Problem

    Your result (temp) keeps getting overwritten with each loop, so what will happen is temp will really only be set by the last comparison (3 versus 7 in this case). You might want to initialize temp...
  3. Replies
    4
    Views
    1,166

    Re: Specifying the file location

    What error are you getting?
  4. Replies
    1
    Views
    1,199

    Re: Problem with subtracting a negative fraction

    I think you may want to change

    int newNum = ((toUse.numerator * denominator)
    - (numerator * toUse.denominator));

    With

    int newNum = ((numerator * toUse.denominator)
    ...
  5. Replies
    1
    Views
    1,733

    Re: Sorting: Selection, insertion, bubble

    You may look at the following:
    Beginning Java - Unit 6 Arrays - Bubble Sort
    - Jim
  6. Replies
    1
    Views
    749

    [SOLVED] Re: Need guidance on adding characters

    You will want to use Character.getNumericValue(temp1) to convert temp1 and temp2 into integer values.
    - Jim
  7. Replies
    2
    Views
    2,452

    Re: Runtime error, illegal argument exception

    Try changing the ##.#0 to ##.00
    - Jim
  8. Thread: Hello!

    by jpharte
    Replies
    1
    Views
    1,054

    Hello!

    I come with many years of systems development experience and hope to help people out!
Results 1 to 8 of 8