Jump to content

mibe04

Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

mibe04's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. [!--quoteo(post=358648:date=Mar 26 2006, 11:06 PM:name=Shadow Hatake)--][div class=\'quotetop\']QUOTE(Shadow Hatake @ Mar 26 2006, 11:06 PM) [snapback]358648[/snapback][/div][div class=\'quotemain\'][!--quotec--] How would go about doing this? I'm putting in 7 variables, but how would I make a loop where each variable was only used once and made every possible comination? [/quote] I'm not totally sure what your problem is... You have seven variables and you want to do all combinations. The loop will be different if you consider (A and B) to be the same as (B and A) or not. i.e A*B == B*A but A-B != B-A To create the loops your problem have to be more specified. All combinations can differ between two problems as you can see in the example abowe. [code] // A and B is the same as B and A for($i=0;$i<7;$i++) {    for($j=$i;$j<7;$j++)    {        math between var[$i] and var[$j]    } } // A and B is not the same as B and A for($i=0;$i<7;$i++) {    for($j=0;$j<7;$j++)    {        math between var[$i] and var[$j]    } } [/code]
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.