Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Desafio Tabuada

<?php

$tabuada = 5;

echo "Tabuada do #$tabuada " .PHP_EOL;

for ($i = 1; $i <= 10; $i++) {
    $resul = $tabuada * $i;
    echo " $i x $tabuada = $resul" .PHP_EOL;
}
1 resposta
solução!

É isso aí Nelson!