Skip to content

Instantly share code, notes, and snippets.

@felipecastrosales
Last active January 10, 2022 20:34
Show Gist options
  • Save felipecastrosales/c87d76e810e7844ae6687082aa7b8c15 to your computer and use it in GitHub Desktop.
Save felipecastrosales/c87d76e810e7844ae6687082aa7b8c15 to your computer and use it in GitHub Desktop.
Condicionais - if | else
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