Created
November 12, 2014 11:31
-
-
Save pbalduino/da9cacb939c4626a6857 to your computer and use it in GitHub Desktop.
Cálculo de média da forma curta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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