Neste exercício utilizamos a estrutura de repetição for para fazer a tabuada do número escolhido e podermos mostrá-la em ordem crescente e decrescente.
namespace Aula14_09_16Tabuada
{public partial class frm_Tabuada : Form
{
public frm_Tabuada()
{
InitializeComponent();
}
private void label2_Click(object sender, EventArgs e)
{
}
private void btnSair_Click(object sender, EventArgs e)
{
this.Close();
}
private void btnLimpar_Click(object sender, EventArgs e)
{
txbNumero.Text = "";
lblPcrescente.Text = "";
lblPdecrescente.Text = "";
}
private void btnOk_Click(object sender, EventArgs e)
{
int i, numero, total;
string auxiliar;
numero = Convert.ToInt32(txbNumero.Text);
for (i = 1; i <= 10; i = i + 1)
{
total = i * numero;
auxiliar = string.Format("{0:00} x {1:00} = {2:00}\n", i, numero, total);
lblPcrescente.Text = lblPcrescente.Text + auxiliar;
}
for (i = 10; i >= 1; i = i - 1)
{
total = i * numero;
auxiliar = string.Format("{0:00} x {1:00} = {2:00}\n", i, numero, total);
lblPdecrescente.Text = lblPdecrescente.Text + auxiliar;
}
}
}
}
Nenhum comentário:
Postar um comentário