а что-такое скуль сервер? я в сленге не очень силёнгрешен, лень бывает переключать раскладку... но у вас скрин... епрст...
а что это за команда? разъясните по-подробнееhttps://learn.microsoft.com/ru-ru/powershell/scrip...
насчёт иобита, я с его помощью очищаю остатки удалённых программя больше доверяю geekuninstaller
namespace ConsoleApp2
{
public static class recursion
{
static long callcnt = 0;
static int fib(int n)
{
#if DEBUG
$"_fib calling {++callcnt} count".print();
#endif
var res = 0;
if (n == 0 || n == 1) res = n;
else res = fib(n - 1) + fib(n - 2);
#if DEBUG
$"_fib return {res}".print();
#endif
return res;
}
static int max = 15;
public static void Main()
{
for (var i = 0; i < max; i++)
{
"... next fib...".print();
fib(i).ToString().print();
}
}
public static void print(this string s) => Console.WriteLine(s);
public static void print(this List<int> l) { foreach (var i in l) i.ToString().print(); }
}
}