0
Как решить задачу по 3 модулю?
Вот мой код, но там невозможно суммировать i и Points. Помогите пж using System; using System.Collections.Generic; namespace SoloLearn { class Program { static void Main(string[] args) { int levels = Convert.ToInt32(Console.ReadLine()); Console.WriteLine(Points(levels)); } static int Points(int levels) { //ваш код int i = 0; for (int Points = 1; Points <= levels; Points++); i = i + Points; Console.WriteLine (i); } } }
2 Answers
+ 1
static void Main(string[] args)
{
int levels = Convert.ToInt32(Console.ReadLine());
Console.WriteLine(Points(levels));
}
static int Points(int levels)
{
if(levels == 1)
{
return 1;
}
return levels + Points(levels - 1);
}
в уроке рекурсия более подробно
0
You can not call up the function before declaring it