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); } } }

25th Jan 2021, 4:37 PM
Я Ты
Я Ты - avatar
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); } в уроке рекурсия более подробно
25th Jan 2021, 11:52 PM
0shibka
0shibka - avatar
0
You can not call up the function before declaring it
25th Jan 2021, 6:32 PM
Elia John
Elia John - avatar