Created
January 11, 2017 00:34
-
-
Save samverneck/c99c0f2aca2b1150c09eab760bb748e5 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
nota1 = int(input("Digite a primeira nota: ")) | |
nota2 = int(input("Digite a segunda nota: ")) | |
nota3 = int(input("Digite a terceira nota: ")) | |
nota4 = int(input("Digite a quarta nota: ")) | |
media = (nota1 + nota2 + nota3 + nota4) / 4 | |
print("A média aritmética é", media) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment