Search:

Type: Posts; User: dungeondragon

Search: Search took 0.07 seconds.

  1. Replies
    4
    Views
    1,702

    Re: Very simple problem...PLEASE HELP!

    I came with moving the print statement to the front so I have this:


    private int number = 123;
    public void addNumbers (int number)
    {
    System.out.println("The local variable is: " + number);...
  2. Replies
    4
    Views
    1,702

    Very simple problem...PLEASE HELP!

    Consider the following code which is supposed to add a value passed to the method to an instance variable; however, there is a problem. Re-write this code, without renaming any variable names, to...
  3. Simple code.. why isn't it working?! (no one has been able to solve this for me yet!)

    My code has to read morse code from a text file, ask a user for a sentence, then translate the user's input into morse code. This is what I've written:


    import java.util.*;
    import...
Results 1 to 3 of 3