Search:

Type: Posts; User: KevinWorkman

Search: Search took 0.13 seconds.

  1. Re: Help simplifying huge nested if statement?

    Copeg already gave you the correct answer, I'm not sure what else you want me to say about it.
  2. Re: Help simplifying huge nested if statement?

    If you have a bunch of nested if statements, like this:

    if(a){
    if(b){
    if(c){
    //something
    }
    }
    }
    else{
  3. Re: Help simplifying huge nested if statement?

    Yeah, that if statement doesn't seem that bad.

    You could try splitting it up into methods more though.

    But really, at the early stages of programming, don't worry about getting everything...
Results 1 to 3 of 3