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
void main (){ | |
// Entrada de dados | |
String letra = 'r'; | |
String textoV='',textoC=''; | |
List<String> ListaVogal=['a','e','i','o','u']; | |
//Processamento e Saída de dados | |
for(var vogal in ListaVogal) { | |
letra=letra.toLowerCase(); | |
if(vogal==letra){ |
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
void main() { | |
// Entrada de dados | |
int saque = 99, n50 = 0, n100 = 0, n200 = 0, n10 = 0, n5 = 0, n2 = 0, n1 = 0, atual=0, qtd=0; | |
List<String> uni=["Zero", "Um", "Dois", "Tres", "Quatro", "Cinco", "Seis", "Sete", "Oito", "Nove"]; | |
List<String> dez_vin=["", "Onze", "Doze", "Treze", "Quatorze", "Quinze", "Dezesseis", "Dezessete", "Dezoito", "Dezenove"]; | |
List<String> dez=["", "Dez", "Vinte", "Trinta", "Quarenta", "Cinquenta", "Sessenta", "Setenta", "Oitenta", "Noventa"]; | |
List<String> cen=["", "Cento", "Duzentos", "Trezentos", "Quatrocentos", "Quinhentos", "Seiscentos", "Setecentos", "Oitocentos", "Novecentos"]; | |
List<String> o=[]; String extenso=' '; |