Найти сумму чисел кратных 7 от 0 до 1000? программа c#

xamidulla1956 xamidulla1956    2   29.09.2020 21:52    3

Ответы
kall4 kall4  29.10.2020 21:53
Кодusing System;using System.Linq;namespace ThisAnswerIsNotMine {    class Program    {        private static void Main()        {            var r = Enumerable                .Range(0, 1000)                .Where(x => x % 7 == 0)                .Aggregate((x, y) => x + y);            Console.WriteLine(r);        }    }}
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика