using System;
using System.Collections.Generic;
namespace App {
internal class Program {
private static void Main() {
Console.Write("Сколько элементов будем вводить? n = ");
var n = Convert.ToInt32(Console.ReadLine());
var a = new List<int>();
for (var i = 0; i < n; i++) {
Console.Write("Элемент номер {0} = ", i);
a.Add(Convert.ToInt32(Console.ReadLine()));
}
Console.WriteLine("Среднеарифметическое = {0}", Average(a));
Console.ReadKey();
public static double Average(List<int> a) {
var sum = 0.0;
foreach (var t in a) {
sum += t;
return sum / a.Count;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace example
{
class Program
static void Main(string[] args)
double x = 0;
Console.WriteLine("Введите число n");
int n = int.Parse(Console.ReadLine());
for (int i = 0; i < n; i++)
Console.WriteLine("Введите " + (i+1) +" число");
x =x + int.Parse(Console.ReadLine());
x = x / n;
Console.WriteLine("среднее арифметическое целых чисел составило: "+ x);
Console.ReadLine();
using System;
using System.Collections.Generic;
namespace App {
internal class Program {
private static void Main() {
Console.Write("Сколько элементов будем вводить? n = ");
var n = Convert.ToInt32(Console.ReadLine());
var a = new List<int>();
for (var i = 0; i < n; i++) {
Console.Write("Элемент номер {0} = ", i);
a.Add(Convert.ToInt32(Console.ReadLine()));
}
Console.WriteLine("Среднеарифметическое = {0}", Average(a));
Console.ReadKey();
}
public static double Average(List<int> a) {
var sum = 0.0;
foreach (var t in a) {
sum += t;
}
return sum / a.Count;
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace example
{
class Program
{
static void Main(string[] args)
{
double x = 0;
Console.WriteLine("Введите число n");
int n = int.Parse(Console.ReadLine());
for (int i = 0; i < n; i++)
{
Console.WriteLine("Введите " + (i+1) +" число");
x =x + int.Parse(Console.ReadLine());
}
x = x / n;
Console.WriteLine("среднее арифметическое целых чисел составило: "+ x);
Console.ReadLine();
}
}
}