Exercícios Windows Forms Visual Studio
Por: Douglas Oli • 18/11/2020 • Trabalho acadêmico • 1.025 Palavras (5 Páginas) • 502 Visualizações
Exercício Visual Studio Código dos Programas, Visual G e Diagrama Dia
Disciplina: Programador Algoritmo
Exercício 1 Visual Studio: Conversor de temperatura
private void button1_Click(object sender, EventArgs e)
{ double c, f;
c = Convert.ToDouble(txbCelsius.Text);
f = c * 1.8 + 32;
txbresultado.Text = (f.ToString())}
private void button2_Click(object sender, EventArgs e)
{
txbCelsius.Text = "";
txbresultado.Text = "";
txbCelsius.Focus(); }
private void button3_Click(object sender, EventArgs e)
{
Application.Exit();}
Exercício 2 Visual Studio: Total de Litros Gastos
private void btncalcular_Click(object sender, EventArgs e)
{ int temp;
Double vel, lit;
temp = Convert.ToInt32(txttempo.Text);
vel = Convert.ToDouble(txtvelocidade.Text);
lit = temp * vel / 12;
txtresultado.Text = lit.ToString();}
private void btnlimpar_Click(object sender, EventArgs e)
{ txtvelocidade.Text = "";
txttempo.Text = "";
txtresultado.Text = "";
txtvelocidade.Focus() }
private void btnsair_Click(object sender, EventArgs e)
{ Application.Exit(); }
Exercício 3 Visual Studio: 4 Números
private void btncalcular_Click(object sender, EventArgs e)
{ double num1, num2, num3, num4, S, P;
num1 = Convert.ToDouble(txb1numero.Text);
num2 = Convert.ToDouble(txb2numero.Text);
num3 = Convert.ToDouble(txb3numero.Text);
num4 = Convert.ToDouble(txb4numero.Text);
P = num1 * num3;
S = num2 + num4;
txbProduto.Text = P.ToString();
txbSoma.Text = S.ToString(); }
private void btnlimpar_Click(object sender, EventArgs e)
{ txb1numero.Text = "";
txb2numero.Text = "";
txb3numero.Text = "";
txb4numero.Text = "";
txbProduto.Text = "";
txbSoma.Text = "";
txb1numero.Focus(); }
private void btnsair_Click(object sender, EventArgs e)
{ Application.Exit(); }
Exercício 4 Visual Studio: Quadrado da Diferença
private void btnCalcular_Click(object sender, EventArgs e)
{ double num1, num2, qd;
num1 = Convert.ToDouble(txbnumero1.Text);
num2 = Convert.ToDouble(txbnumero2.Text);
qd = Math.Pow((num1 - num2),2);
txbQD.Text = Convert.ToString(qd); }
private void btnLimpar_Click(object sender, EventArgs e)
...