Generation

generate functionFri, 31 Mar 2023

funcion que muestre las tablas de multiplicar con while

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Ciclo while</title> </head> <body> <h1>Tablas de multiplicar</h1> <?php $num = 1; while($num < 11 ){ $tabla = 1; echo "<h2>Tabla del $num</h2>"; while( $tabla < 11 ){ $resultado = $tabla * $num; echo "$tabla x $num = $resultado <br>"; $tabla++; } $num++; } ?> </body> </html>

Questions about programming?Chat with your personal AI assistant