Svp aidez_moi
Résolu/Fermé
aradis
Messages postés
6
Date d'inscription
mardi 18 août 2009
Statut
Membre
Dernière intervention
20 août 2009
-
18 août 2009 à 12:02
aradis - 19 août 2009 à 13:16
aradis - 19 août 2009 à 13:16
2 réponses
fred_bgt
Messages postés
153
Date d'inscription
mercredi 31 décembre 2008
Statut
Membre
Dernière intervention
12 septembre 2009
22
18 août 2009 à 14:37
18 août 2009 à 14:37
$i : colonnes (0 à 3)
$j : lignes (0 à 3)
0 1 2 3
1 4 3 4
8 27 16 5
27 64 125 36
==
0^2 1^1 2^1 3^1
1^3 2^2 3^1 4^1
2^3 3^3 4^2 5^1
3^3 4^3 5^3 6^2
d'où :
if ($j > $i) $p=3;
if ($j == $i) $p=2;
if ($j < $i) $p=1;
ou mieux :
$p=($j>$i?3:($j==$i?2:1))
for ($i=0; $i<3; $i++)
for ($j=0; $j<3; $j++)
$T [$i] [$j] = pow($i+$j , $p);
donc,
$T [$i] [$j] = pow($i+$j, ($j>$i?3:($j==$i?2:1)) )
Si tu vois les puissances, ca prend 3mn à trouver ...
$j : lignes (0 à 3)
0 1 2 3
1 4 3 4
8 27 16 5
27 64 125 36
==
0^2 1^1 2^1 3^1
1^3 2^2 3^1 4^1
2^3 3^3 4^2 5^1
3^3 4^3 5^3 6^2
d'où :
if ($j > $i) $p=3;
if ($j == $i) $p=2;
if ($j < $i) $p=1;
ou mieux :
$p=($j>$i?3:($j==$i?2:1))
for ($i=0; $i<3; $i++)
for ($j=0; $j<3; $j++)
$T [$i] [$j] = pow($i+$j , $p);
donc,
$T [$i] [$j] = pow($i+$j, ($j>$i?3:($j==$i?2:1)) )
Si tu vois les puissances, ca prend 3mn à trouver ...
fred_bgt
Messages postés
153
Date d'inscription
mercredi 31 décembre 2008
Statut
Membre
Dernière intervention
12 septembre 2009
22
19 août 2009 à 13:07
19 août 2009 à 13:07
j'ai pas d' "exos résolus"
je fais ça par plaisir.
sup spe il y a 20ans...
bon courage
;-)
je fais ça par plaisir.
sup spe il y a 20ans...
bon courage
;-)
19 août 2009 à 12:22
toute facon je t'ecrirai des que je rencontre des difficultés.Merci