Beispiel #1
0
 public static void Execute()
 {
     for (int a = 1; a <= 1000; a++)
     {
         for (int b = a + 1; b <= 1000; b++)
         {
             for (int c = b + 1; c <= 1000; c++)
             {
                 if (a + b + c == 1000)
                 {
                     if (ProgramExtensions.IsPythagoreanTriple(a, b, c))
                     {
                         Console.WriteLine(a * b * c);
                     }
                 }
             }
         }
     }
 }
Beispiel #2
0
 public static Coroutine SetDelay <T>(this T t, float delay, UnityAction action) where T : MonoBehaviour
 {
     ProgramExtensions.Create();
     return(ProgramExtensions.Instance.WaitForCompletion(delay, action));
 }