Responsive
Enviado por Juan Carlos Martinez • 11 de Julio de 2022 • Tarea • 275 Palabras (2 Páginas) • 37 Visitas
<?php
print "EJERCICIO 1 <br>";
//variable seleccion control switch-case ejercicio 1
$i=1;
//Funcion ejercicio 1
function Compra($arg_1, $arg_2, $arg_3)
{
$suma_compra=$arg_1+$arg_2+$arg_3;
$iva=1.19;
$compra_total=$suma_compra*$iva;
print "$compra_total <br>";
}
suitch ($i);
//variable seleccion control switch-case ejercicio 2
print "<br><br>EJERCICIO 2 <br>";
$i=2;
//Funcion ejercicio 2
function Mayor($edad)
{
if ($edad < 18){
print "Eres menor de edad, no podemos contratarte";
}elseif ($edad>18 && $edad<=60){
print "Es posible que usted sea un candidato al cargo";
}elseif ($edad>60){
print "Lo sentimos, pero usted no cumple el perfil del cargo";
}
}
suitch ($i);
//variable seleccion control switch-case ejercicio 3
print "<br><br>EJERCICIO 3 <br>";
$i=3;
//Funcion ejercicio 3
function arreglo($matriz)
{
$numeroMayor =0;
$numeroMenor=0;
for (int x=0;x<1;x++) {
for (int y=0;y<1;y++) {
if (matriz[x][y] > $numeroMayor) {
numeroMayor = matriz[x][y];
}
if (matriz[x][y] < $numeroMenor) {
numeroMenor = matriz[x][y];
}
}
}
print "Numero Mayor es igual a $
}
suitch ($i);
function suitch($control){
//variables ejercicio 1
$costo1=2000;
$costo2=3000;
$costo3=4000;
//variables ejercicio 2
$menor18 = 17;
$mayor18 = 30;
$mayor60 = 61;
//variables ejercicio 3
$arr[0][0]=0;
$arr[0][1]=1;
$arr[1][0]=2;
$arr[1][1]=3;
switch ($control) {
case 1:
print "Compra de 3 productos, seleccion 1 en control switch-case <br>";
print "Costo 1= $costo1<br>Costo 2= $costo2<br>Costo 3= $costo3<br>";
print "<br> El total de la Compra mas IVA es de ";
Compra($costo1,$costo2,$costo3);
break;
case 2:
print "<br>Variable con $menor18 ";
Mayor($menor18);
print "<br>Variable con $mayor18 ";
Mayor($mayor18);
print "<br>Variable con $mayor60 ";
Mayor($mayor60);
...