Last active
January 10, 2022 20:34
-
-
Save felipecastrosales/c87d76e810e7844ae6687082aa7b8c15 to your computer and use it in GitHub Desktop.
Condicionais - if | else
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
void main() { | |
double media = 9.7; | |
if (media < 6) { | |
print('Você foi reprovado'); | |
} else { | |
print('Você foi aprovado'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment