float precio(float base, float impuesto) /* definición */ { float calculo; calculo = base + (base * impuesto); return calculo; }