Ejercio N1 Informatica IUNA


/ Published in: JavaScript
Save to your folder(s)

El ejercicio numero uno resuelto


Copy this code and paste it in your HTML
  1. <script type="text/javascript">
  2. var n1
  3. var n2
  4. var n3
  5.  
  6. n1=Number(prompt("Escriba un número cualquiera"," "))
  7. n2=Number(prompt("Escriba otro número cualquiera"," "))
  8. n3=Number(prompt("Escriba un último número cualquiera"," "))
  9.  
  10. if(n1>n2 & n1>n3)
  11. {
  12. document.write("<h1>El número mayor es: ",n1,"</h1>")
  13. }
  14. if(n2>n1 & n2>n3)
  15. {
  16. document.write("<h1>El número mayor es: ",n2,"</h1>")
  17. }
  18. if(n3>n1 & n3>n2)
  19. {
  20. document.write("<h1>El número mayor es: ",n3,"</h1>")
  21. }
  22.  
  23. </script>

URL: asd

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.