Код: Выделить всё
using System;
public class Program
{
public static void Power(int B,int C)
{
if(B == 1)
return;
double temp = Math.Pow(B,C);
Console.WriteLine(temp);
Power(B--,C);
}
public static void Main()
{
Console.WriteLine("Hello World");
Power(4,2);
}
}
Код: Выделить всё
Run-time exception (line -1): Execution time limit was exceeded
Подробнее здесь: https://stackoverflow.com/questions/528 ... -recursion
Мобильная версия