Guest User

Untitled

a guest
Jan 21st, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. static public double BerechneArithmetischesMittel(params double[] size)
  2.         {
  3.             double summe = 0;
  4.             foreach (double zahl in size)
  5.             {
  6.                 summe += zahl;
  7.             }
  8.             return summe / size.Length;
  9.         }
Add Comment
Please, Sign In to add comment