Search:

Type: Posts; User: Norm

Search: Search took 0.11 seconds.

  1. Replies
    5
    Views
    1,737

    Re: Small airline company assignment

    OK, that part works. What about the rest of the code and variables?

    What is the method: markSeat() supposed to do? Does it do it correctly? When does it return true? When does it return false?
    ...
  2. Replies
    5
    Views
    1,737

    Re: Small airline company assignment

    Given this statement:
    x = 4;
    the value of the variable x is 4.

    Given this statement:
    private boolean markSeat(char row, char seat) {
    what are the values of the variables: row and seat?
  3. Replies
    5
    Views
    1,737

    Re: Small airline company assignment

    Try debugging the code by printing out the values of the variables that are used to make that decision. The print outs will show you what the computer is seeing and help you understand why the...
Results 1 to 3 of 3