private void button1_Click(object sender, EventArgs e)
{
int idadeDeJoao = 15;
int idadeDeMaria = 25;
int idadeDeJose = 9;
int Soma = idadeDeJoao + idadeDeJose + idadeDeMaria;
double Media = Soma / 3;
MessageBox.Show("A média das idades é: " + Media);
}