I need to calculate the percent but when I put a float value in the textbox the variable convert the value to an int value.
float intereses = 0, monto = 0, total = 0;
intereses = float.Parse(textBox1.Text);
monto = float.Parse(txtMonto.Text);
total = ((monto * intereses)/100);
MessageBox.Show("El "+textBox1.Text+" % de "+monto+" es "+ total);