This file contains 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
/** | |
* Questão 3 | |
* Gerar três inteiros randômicos entre 1 e 10 e informar se estes valores podem ser | |
* vértices de um triângulo. Imprimir os valores e se formam ou não um triângulo. | |
* Dica: três lados formam um triângulo quando a soma de quaisquer dois lados for maior | |
* que o terceiro lado. | |
**/ | |
import 'dart:math'; |
This file contains 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
/** | |
* Questão 2 | |
* Gerar uma nota randômica (com 1 casa decimal) entre 0 e 10 e imprimir a nota e a mensagem correspondente; | |
* i) “Reprovado” – menor que 4; | |
* ii) “Prova Final” – maior ou igual a 4 e menor que 6; | |
* iii) “Aprovado” – maior ou igual a 6. | |
**/ | |
import 'dart:math'; |
This file contains 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
//Questão 1 - Gerar três números randômicos de 0 a 100 e imprimir a soma, a média, o maior e o menor deles. | |
import 'dart:math'; | |
void main() { | |
var maxNum = 100; | |
var qtd = 3; | |
var rnd = new Random(); | |
var numeros = new List(qtd).map((x) => rnd.nextInt(maxNum + 1)); |