Created
October 25, 2021 14:32
-
-
Save celestecastillo0/062ab97a5fe4756c9205cecb3b45bd72 to your computer and use it in GitHub Desktop.
Dwab_UII_poo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<?php | |
class Fruta { | |
// Properties | |
public $nombre; | |
public $color; | |
// Methods | |
function Escribe_n($nombre) { | |
echo"El nombre de la fruta es $nombre <br>"; | |
} | |
function NumeroM($n,$nombre) { | |
while($n <= 7) | |
{ | |
echo"<br>No.$n El nombre de la fruta es $nombre"; | |
$n++; | |
}//fin while | |
}//fin de numero | |
}//fin de clase | |
$objfruta = new Fruta(); | |
$objfruta->Escribe_n("Manzana"); | |
$objfruta->NumeroM(1,"platano"); | |
echo"<br>Celeste Castillo Flores "; | |
?> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment