I have a program that prints odd even numbers and multiples of fifths but I take care that the result is looked like this in columns downwards I print linear
10 2 3 1
9 4 5 5
8 8 7 10
7 10 9 15
This is the code
<?php
$i=1;
$sucesivo=11-$i;
$pares=$i * 2;
$impares=$i * 2 - 1;
$quintos=$i * 5 -5;
while($i<=10){
echo $i++,$sucesivo,$pares,$impares,$quintos;
}
?>
This throws me:
1102102102103102104102105102106102107102108102109102101010210