I'm trying to do an exercise in C # using Windows Forms that are over 18 years old. The algorithm should read the age of 10 people. But when I run the program it lets me just type an age.
public partial class idade : Form
{
int qtde, id,i;
public idade()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int i = 0;
while (i < 10)
{
i = i + 1;
MessageBox.Show("Digite a idade");
id = Convert.ToInt32(txtidade1.Text);
if (id >= 18)
{
qtde = qtde + 1;
}
MessageBox.Show("Existem" + qtde + "pessoas com mais de 18 anos");
}
}
}
}