Created
May 28, 2022 16:28
-
-
Save almcarvalho/6cf310c8a66df2d4f079f68d8f855b3c to your computer and use it in GitHub Desktop.
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
console.log("Sistemas de Notas "); | |
var nota1 = prompt("Olá. Informe sua primeira nota: "); | |
var nota2 = prompt("Olá. Informe sua segunda nota: "); | |
var media = (nota1+ nota2 )/2; | |
console.log("A sua média é: " + media); | |
//valor 10 + 8 dando 54 😆 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment