private void btnCalcularFe_Click(object sender, EventArgs e)
{
double peso, altura, imc;
peso = double.Parse(txtFePeso.Text);
altura = double.Parse(txtFeAltura.Text);
imc = (peso / (altura * altura));
txtResultadoFe.Text = Convert.ToString(imc);
}