https://paste2.org/PCvH1kNb
Codigo completo:
https://paste2.org/hILtvZ33
tarea: hacer los cambios para que no se cuentens los repetidos en ejercicios de arreglos
https://codepad.remoteinterview.io/MRJSYGRSHL
<?php
$c = 0;
$vc1 = 0;
$vc2 = 0;
//arreglos
$a = array();
$b = array();
$a[0]=1;
$a[1]=2;
$a[2]=3;
$a[3]=4;
$b[0]=1;
$b[1]=1;
$b[2]=7;
$b[3]=8;
//entrada
//proceso
for ($vc1=0; $vc1 <= 3; $vc1++){
$valor = $a[$vc1];
for ($vc2=0; $vc2<=3; $vc2++)
if($valor == $b[$vc2])
$c++;
}
echo "repetidos "+$c;
?>
No hay comentarios