Respuesta
abr. 11, 2009 - 16:04
En c#
public int Bonificacion( string codigo)
{
string tercera= codigo.Substring(3,1).ToUpper();
switch (tercera)
case "C": return 7;
case "V": return 7;
case "P": return 6;
case "A": return 5;
case "M": return 5;
default: return 0;
}
Espero te sirva
public int Bonificacion( string codigo)
{
string tercera= codigo.Substring(3,1).ToUpper();
switch (tercera)
case "C": return 7;
case "V": return 7;
case "P": return 6;
case "A": return 5;
case "M": return 5;
default: return 0;
}
Espero te sirva
Añadir Nuevo Comentario