30 б!!! Помогите с# Знайдіть суму, кількість та середнє арифметичне всіх цілих чисел з інтервалу [100;200], кратних 17.
Using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Program { class Program { static void Main(string[] args) { int sum = 0; int count = 0; for (int i = 100; i <= 200; i++)<br> if (i % 17 == 0) { sum += i; count++; } Console.WriteLine("Сумма: " + sum); Console.WriteLine("Количество: " + count); Console.WriteLine("Среднее арифметическое: " + Convert.ToDouble(sum) / count); Console.ReadKey(); } } }