Search:

Type: Posts; User: GregBrannon

Search: Search took 0.43 seconds.

  1. Re: Passing a boolean value through a method?

    Ahhh. Glad to help. You're welcome.
  2. Re: Passing a boolean value through a method?

    Expanding it for you:

    if ( isValid( side1, side2, side3 ) )
    {
    area(side1,side2,side3);
    }
  3. Re: Passing a boolean value through a method?

    You use an 'if' statement:

    if ( resultsOfFirstMethod )
    {
    area();
    }
Results 1 to 3 of 3