Triangle en PHP
Fermé
akreem
-
21 mars 2008 à 14:39
Enax Messages postés 203 Date d'inscription lundi 11 février 2008 Statut Membre Dernière intervention 16 mars 2010 - 21 mars 2008 à 14:57
Enax Messages postés 203 Date d'inscription lundi 11 février 2008 Statut Membre Dernière intervention 16 mars 2010 - 21 mars 2008 à 14:57
A voir également:
- Triangle en PHP
- Easy php - Télécharger - Divers Web & Internet
- Triangle away - Télécharger - Utilitaires
- Get_magic_quotes_gpc php 8 ✓ - Forum PHP
- Bouton php - Forum PHP
- Montre garmin bloqué triangle ✓ - Forum Accessoires & objets connectés
1 réponse
Enax
Messages postés
203
Date d'inscription
lundi 11 février 2008
Statut
Membre
Dernière intervention
16 mars 2010
145
21 mars 2008 à 14:57
21 mars 2008 à 14:57
<?php $n = 100; $nbLines = $n / 2; for($currentLine = 1 ; $currentLine <= $nbLines ; $currentLine++) { for($currentNb = 1 ; $currentNb <= $currentLine ; $currentNb++) echo ($currentNb * 2).' '; echo '<br />'; } ?>