using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
static void Main(string[] args)
//Составьте программу вычисления суммы чисел в диапазоне от 80 до 120
int S = 0;
for (int i = 80; i <= 120; i++)
S += i;
Console.WriteLine("ответ = " + S);
Console.ReadKey();
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
//Составьте программу вычисления суммы чисел в диапазоне от 80 до 120
int S = 0;
for (int i = 80; i <= 120; i++)
S += i;
Console.WriteLine("ответ = " + S);
Console.ReadKey();
}
}
}