Created
August 11, 2017 14:05
-
-
Save musp/463284c7d76412842870ef4dc1929b42 to your computer and use it in GitHub Desktop.
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
using System; | |
public class Program | |
{ | |
public static void Main() | |
{ | |
busqueExtenso(1000, " e "); | |
} | |
public static void busqueExtenso(int valor, string separador){ | |
if(valor < 20) | |
{ | |
Console.WriteLine(RetorneValorString(valor)); | |
} | |
if(valor > 19) | |
{ | |
int len = valor.ToString().Length; | |
if(len == 2) | |
{ | |
int ValorPrimario = int.Parse(valor.ToString().Substring(0,1)); | |
int ValorSecundario = int.Parse(valor.ToString().Substring(1,1)); | |
ValorPrimario = ValorPrimario * 10; | |
Console.WriteLine(RetorneValorString(ValorPrimario)+(ValorSecundario>0 ? separador+RetorneValorString(ValorSecundario):"")); | |
} | |
else if(len == 3) | |
{ | |
int ValorPrimario = int.Parse(valor.ToString().Substring(0,1)); | |
int ValorSecundario = int.Parse(valor.ToString().Substring(1,1)); | |
int ValorTerciario = int.Parse(valor.ToString().Substring(2,1)); | |
ValorPrimario = ValorPrimario * 100; | |
ValorSecundario = ValorSecundario * 10; | |
Console.WriteLine( RetorneValorString(ValorPrimario) | |
+(ValorSecundario > 0 ? separador+RetorneValorString(ValorSecundario):"") | |
+(ValorTerciario > 0 ?separador+RetorneValorString(ValorTerciario):"")); | |
} | |
} | |
} | |
public static string RetorneValorString(int identificador){ | |
switch (identificador) | |
{ | |
case 1: return "Um"; | |
case 2: return "Dois"; | |
case 3: return "Tres"; | |
case 4: return "Quatro"; | |
case 5: return "Cinco"; | |
case 6: return "Seis"; | |
case 7: return "Sete"; | |
case 8: return "Oito"; | |
case 9: return "Nove"; | |
case 10: return"Dez"; | |
case 11: return "Onze"; | |
case 12: return "Doze"; | |
case 13: return "Treze"; | |
case 14: return "Quatorze"; | |
case 15: return "Quinze"; | |
case 16: return "Dezesseis"; | |
case 17: return "Dezessete"; | |
case 18: return "Dezoito"; | |
case 19: return "Dezenove"; | |
case 20: return"Vinte"; | |
case 30: return"Trinta"; | |
case 40: return"Quarenta"; | |
case 50: return"Cinquenta"; | |
case 60: return"Sessenta"; | |
case 70: return"Setenta"; | |
case 80: return"Oitenta"; | |
case 90: return"Noventa"; | |
case 100:return "Cem"; | |
case 200:return "Duzentos"; | |
case 300:return "Trezentos"; | |
case 400:return "Quatrocentos"; | |
case 500:return "Quinhentos"; | |
case 600:return "Seicentos"; | |
case 700:return "Setecentos"; | |
case 800:return "Oitocentos"; | |
case 900:return "Novecentos"; | |
default:return "Valor inválido"; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment