20/08/2010, 20:49
|
| Colaborador | | Fecha de Ingreso: septiembre-2009 Ubicación: mortuoria
Mensajes: 3.805
Antigüedad: 15 años, 2 meses Puntos: 214 | |
Respuesta: Códigos - Reto Romanos exangel
Código PHP:
Ver original<form action="romanos.php" method="post"> <input name="elnumero" type="text"><input name="" type="submit" value="enviar" maxlength="4"> </form> <?php $elnumero_tx=""; if(isset($_POST["elnumero"])){ if($_POST["elnumero"]!="" && is_numeric($_POST["elnumero"]) && intval($_POST["elnumero"])<10000){ $elnumero_tx=strval($_POST["elnumero"]); } } $entradas=array(1 => "I", 2 => "II", 3 => "III", 4 => "IV", 5 => "V", 6 => "VI", 7 => "VII", 8 => "VIII", 9 => "IX", 10 => "X", 40 => "XL", 50 => "L", 90 => "XC", 100 => "C", 400 => "CD", 500 => "D", 900 => "CM", 1000 => "M" ); if($elnumero_tx!=""){ echo "<br>NÚMERO RECIBIDO: <strong>".$elnumero_tx."</strong><br>LA CONVERSIÓN A ROMANOS: <strong>"; if($num4>0){ for($h=1;$h<=$num4;$h++){ echo $entradas[1000]; } } } if($num3>0){ if($num3<4){ for($h=1;$h<=$num3;$h++){ echo $entradas[100]; } }else{ if($num3==4){ echo $entradas[400]; }else{ if($num3==5){ echo $entradas[500]; }else{ if($num3<=8){ echo $entradas[500]; for($h=1;$h<=($num3-5);$h++){ echo $entradas[100]; } }else{ echo $entradas[900]; } } } } } } if($num2>0){ if($num2<4){ for($h=1;$h<=$num2;$h++){ echo $entradas[10]; } }else{ if($num2==4){ echo $entradas[40]; }else{ if($num2==5){ echo $entradas[50]; }else{ if($num2<=8){ echo $entradas[50]; for($h=1;$h<=($num2-5);$h++){ echo $entradas[10]; } }else{ echo $entradas[90]; } } } } } } if($num1>0) echo $entradas[$num1]; echo "</strong>"; } ?> <br /><br /> <a href="romanos.zip">DESCARGAR PHP</a>
__________________ "Si consigues ser algo más que un hombre, si te entregas a un ideal, si nadie puede detenerte, te conviertes en algo muy diferente."
Visita piggypon.com |