Created
January 10, 2022 20:39
-
-
Save felipecastrosales/8517166cc2ec5bb9634b1be573d1ad01 to your computer and use it in GitHub Desktop.
Condicionais - Operadores Ternários
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; // 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