Created
February 22, 2024 18:02
-
-
Save alexjosesilva/2b18fdb5a3a43f5e39df9f92f86e9321 to your computer and use it in GitHub Desktop.
Programacao Imperativa
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
| public class CalculadoraMedia { | |
| public static void main(String[] args) { | |
| // Definindo os números | |
| double numero1 = 10.5; | |
| double numero2 = 8.2; | |
| double numero3 = 5.7; | |
| // Calculando a média | |
| double media = (numero1 + numero2 + numero3) / 3; | |
| // Exibindo o resultado | |
| System.out.println("A média dos números " + numero1 + ", " + numero2 + " e " + numero3 + " é: " + media); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment