- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
using System;
namespace Trening_6
{
class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Введите 2 числа через пробел...");
string[] Value = Console.ReadLine().Split(new char[] {' '});
int Result = 0;
for (int i = Convert.ToInt32(Value[0]); i < Convert.ToInt32(Value[1]) + 1; i++)
{
Result += i;
}
Console.WriteLine("Сумма всех чисел в диапозоне от {0} до {1} равна {2}", Convert.ToInt32(Value[0]), Convert.ToInt32(Value[1]), Result);
Console.ReadKey();
}
}
}
guest 16.03.2012 12:08 # −1
KusokGovna 16.03.2012 12:09 # 0
roman-kashitsyn 16.03.2012 12:35 # +7
KusokGovna 16.03.2012 12:54 # −7
eth0 16.03.2012 17:32 # 0
> Ни я [...], ни я
Громотей!
roman-kashitsyn 16.03.2012 17:35 # −1
bugmenot 16.03.2012 18:34 # 0
eth0 16.03.2012 19:08 # 0
Steve_Brown 16.03.2012 13:44 # +2
Кстати, почему бы и нет, если формулами нельзя пользоваться.
KusokGovna 17.03.2012 20:10 # −1