/ Published in: Ruby
Es un programa que te dice si eres mayor de edad o no.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
def mayordeedad(anios) if anios >= 18 puts "Puedes beber alchol" else puts "No puedes beber alchol" end end #Llamada a la función mayordeedad(14)