Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save felipecastrosales/8517166cc2ec5bb9634b1be573d1ad01 to your computer and use it in GitHub Desktop.
Save felipecastrosales/8517166cc2ec5bb9634b1be573d1ad01 to your computer and use it in GitHub Desktop.
Condicionais - Operadores Ternários
void main() {
double media = 9.7; // teste com valores menores que 6, e entre 6 e 8.9
var feedback = media > 6 ? 'Você foi aprovado' : 'Você foi reprovado';
print(feedback);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment