Skip to content

Instantly share code, notes, and snippets.

@pbalduino
Created November 12, 2014 11:31
Show Gist options
  • Select an option

  • Save pbalduino/da9cacb939c4626a6857 to your computer and use it in GitHub Desktop.

Select an option

Save pbalduino/da9cacb939c4626a6857 to your computer and use it in GitHub Desktop.
Cálculo de média da forma curta
private void btnCalcular_Click(object sender, EventArgs e)
{
decimal[] notas = {txtNota0.Value, txtNota1.Value, txtNota2.Value, txtNota3.Value};
lblMenor.Text = notas.Min().ToString();
lblMaior.Text = notas.Max().ToString();
lblMedia.Text = notas.Average().ToString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment