Search:

Type: Posts; User: andreas90

Search: Search took 0.12 seconds.

  1. Replies
    10
    Views
    1,782

    Re: Need help with Question

    Where are you stuck?
    if(a > b + c )
    This condition will evaluate to true if a is bigger than the sum of b and c. Is this what you want? Don't you want to a be bigger than b and bigger than c?
    Did...
  2. Replies
    10
    Views
    1,782

    Re: Need help with Question

    Why are you lost? You are in the right direction. You just need to check again the if statement syntax.

    if(a > b & c)

    Firstly, you should better use the logical operator && instead of the...
Results 1 to 2 of 2