M Matzedoon Пользователь Регистрация 16.12.2016 Сообщения 32 Благодарностей 1 Баллы 8 20.08.2017 #1 I got a big list with numbers.. Example 0.005432 0.005654 0.004325 0.003234 100 of these in a list, what is the easiest way to get the average number of this list ?
I got a big list with numbers.. Example 0.005432 0.005654 0.004325 0.003234 100 of these in a list, what is the easiest way to get the average number of this list ?
Nord Client Регистрация 22.03.2012 Сообщения 2 406 Благодарностей 1 473 Баллы 113 21.08.2017 #2 Sum up all the numbers and divide by 100
EtaLasquera Client Регистрация 02.01.2017 Сообщения 526 Благодарностей 112 Баллы 43 21.08.2017 #3 You must write a c# code. Код: var lst = project.lists["list1"]; decimal sum = 0; int i = 0; while (int < lst.count){ sum = sum + Convert.ToDecimal(lst[i]); i++; } return sum / i;
You must write a c# code. Код: var lst = project.lists["list1"]; decimal sum = 0; int i = 0; while (int < lst.count){ sum = sum + Convert.ToDecimal(lst[i]); i++; } return sum / i;