Search:

Type: Posts; User: KevinWorkman

Search: Search took 0.32 seconds.

  1. Replies
    6
    Views
    1,825

    Re: Input/Output help if possible

    That's because String literals are indicated by quotation marks, so when the compiler reaches the second quotation mark, it thinks you want to close the String, and it can't make sense of the rest of...
  2. Replies
    6
    Views
    1,825

    Re: Input/Output help if possible

    Well, your exception is caused because you're passing an int when you've specified that you'd pass a String instead. You're not using the printf function correctly, which makes me think that you...
  3. Replies
    6
    Views
    1,825

    Re: Input/Output help if possible

    Recommended reading: Formatter (Java Platform SE 6)

    That should help you decipher what's going into printf. If you're still having trouble, I suggest you throw together a really basic SSCCE...
Results 1 to 3 of 3